From ea2cfc2d5c3dff50cdaf0bbc5a3c24c343060ab5 Mon Sep 17 00:00:00 2001 From: Perryn Date: Thu, 31 Dec 2009 17:31:31 +1100 Subject: [PATCH] first few features --- Gemfile | 0 README | 243 + Rakefile | 10 + app/controllers/application_controller.rb | 17 + app/controllers/registrations_controller.rb | 19 + app/helpers/application_helper.rb | 3 + app/helpers/days_of_action_helper.rb | 2 + app/models/business_hours_scheduler.rb | 18 + app/models/day_of_action.rb | 13 + app/models/registration.rb | 4 + app/models/time_slot.rb | 8 + app/stylesheets/ie.sass | 15 + app/stylesheets/partials/_base.sass | 11 + app/stylesheets/print.sass | 3 + app/stylesheets/screen.sass | 49 + app/views/registrations/new.html.haml | 30 + config/boot.rb | 110 + config/compass.config | 14 + config/database.yml | 25 + config/environment.rb | 48 + config/environments/cucumber.rb | 26 + config/environments/development.rb | 17 + config/environments/production.rb | 28 + config/environments/test.rb | 28 + config/initializers/backtrace_silencers.rb | 7 + config/initializers/compass.rb | 5 + config/initializers/inflections.rb | 10 + config/initializers/mime_types.rb | 5 + config/initializers/new_rails_defaults.rb | 21 + config/initializers/session_store.rb | 15 + config/locales/en.yml | 5 + config/routes.rb | 46 + db/development.sqlite3 | Bin 0 -> 17408 bytes .../20091228021133_create_day_of_actions.rb | 13 + .../20091229030847_create_time_slots.rb | 13 + .../20091231024604_create_registrations.rb | 13 + db/schema.rb | 35 + db/seeds.rb | 7 + db/test.sqlite3 | Bin 0 -> 8192 bytes doc/README_FOR_APP | 2 + features/register_for_timeslot.feature | 44 + .../register_for_timeslot_steps.rb | 25 + .../step_definitions/view_roster_steps.rb | 63 + features/step_definitions/webrat_steps.rb | 189 + features/support/env.rb | 47 + features/support/paths.rb | 30 + features/support/version_check.rb | 31 + features/view_roster.feature | 21 + lib/tasks/cucumber.rake | 46 + lib/tasks/rspec.rake | 144 + log/cucumber.log | 64232 ++++++++++++++++ log/development.log | 31440 ++++++++ log/production.log | 0 log/server.log | 0 log/test.log | 4726 ++ public/404.html | 30 + public/422.html | 30 + public/500.html | 30 + public/favicon.ico | 0 public/images/grid.png | Bin 0 -> 206 bytes public/images/rails.png | Bin 0 -> 6646 bytes public/index.html | 275 + public/javascripts/application.js | 2 + public/javascripts/controls.js | 963 + public/javascripts/dragdrop.js | 973 + public/javascripts/effects.js | 1128 + public/javascripts/prototype.js | 4320 ++ public/robots.txt | 5 + public/stylesheets/compiled/ie.css | 80 + public/stylesheets/compiled/print.css | 77 + public/stylesheets/compiled/screen.css | 525 + script/about | 4 + script/autospec | 6 + script/console | 3 + script/cucumber | 17 + script/dbconsole | 3 + script/destroy | 3 + script/generate | 3 + script/performance/benchmarker | 3 + script/performance/profiler | 3 + script/plugin | 3 + script/runner | 3 + script/server | 3 + script/spec | 10 + .../registrations_controller_spec.rb | 75 + spec/fixtures/day_of_actions.yml | 7 + spec/fixtures/registrations.yml | 7 + spec/fixtures/time_slots.yml | 7 + spec/helpers/days_of_action_helper_spec.rb | 11 + spec/models/business_hours_scheduler_spec.rb | 48 + spec/models/day_of_action_spec.rb | 43 + spec/models/time_slot_spec.rb | 15 + spec/rcov.opts | 2 + spec/spec.opts | 4 + spec/spec_helper.rb | 54 + .../_colors.sassc | Bin 0 -> 3207 bytes .../_debug.sassc | Bin 0 -> 2028 bytes .../_form.sassc | Bin 0 -> 4392 bytes .../_grid.sassc | Bin 0 -> 12021 bytes .../_interaction.sassc | Bin 0 -> 3914 bytes .../_reset.sassc | Bin 0 -> 4049 bytes .../_scaffolding.sassc | Bin 0 -> 4399 bytes .../_typography.sassc | Bin 0 -> 8998 bytes .../_utilities.sassc | Bin 0 -> 3288 bytes .../_blueprint.sassc | Bin 0 -> 1494 bytes .../ie.sassc | Bin 0 -> 2038 bytes .../print.sassc | Bin 0 -> 1413 bytes .../screen.sassc | Bin 0 -> 4527 bytes .../_clearfix.sassc | Bin 0 -> 2727 bytes .../_float.sassc | Bin 0 -> 2211 bytes .../_hacks.sassc | Bin 0 -> 1760 bytes .../_nowrap.sassc | Bin 0 -> 1640 bytes .../_link_colors.sassc | Bin 0 -> 2657 bytes .../_base.sassc | Bin 0 -> 2377 bytes .../roster.sassc | Bin 0 -> 922 bytes .../_alternating_rows_and_columns.sassc | Bin 0 -> 2798 bytes .../_borders.sassc | Bin 0 -> 3072 bytes .../_scaffolding.sassc | Bin 0 -> 1777 bytes .../_tables.sassc | Bin 0 -> 1533 bytes .../_ie.sassc | Bin 0 -> 5965 bytes .../_print.sassc | Bin 0 -> 5626 bytes .../_reset.sassc | Bin 0 -> 1495 bytes .../_screen.sassc | Bin 0 -> 2146 bytes .../.specification | 372 + .../CHANGELOG.markdown | 557 + .../LICENSE.markdown | 29 + .../README.markdown | 44 + .../chriseppstein-compass-0.8.17/REVISION | 1 + .../chriseppstein-compass-0.8.17/Rakefile | 127 + .../chriseppstein-compass-0.8.17/VERSION.yml | 4 + .../chriseppstein-compass-0.8.17/bin/compass | 8 + .../chriseppstein-compass-0.8.17/deps.rip | 1 + .../examples/README.markdown | 4 + .../examples/blueprint_default/config.rb | 7 + .../blueprint_default/images/grid.png | Bin 0 -> 206 bytes .../blueprint_default/index.html.haml | 85 + .../parts/elements.html.haml | 282 + .../blueprint_default/parts/forms.html.haml | 190 + .../blueprint_default/parts/grid.html.haml | 274 + .../blueprint_default/parts/test-small.jpg | Bin 0 -> 1886 bytes .../examples/blueprint_default/parts/test.jpg | Bin 0 -> 35467 bytes .../blueprint_default/parts/valid.png | Bin 0 -> 1669 bytes .../examples/blueprint_default/src/ie.sass | 3 + .../blueprint_default/src/images/grid.png | Bin 0 -> 206 bytes .../examples/blueprint_default/src/print.sass | 3 + .../blueprint_default/src/screen.sass | 8 + .../examples/blueprint_plugins/config.rb | 8 + .../images/buttons/cross.png | Bin 0 -> 655 bytes .../blueprint_plugins/images/buttons/key.png | Bin 0 -> 455 bytes .../blueprint_plugins/images/buttons/tick.png | Bin 0 -> 537 bytes .../blueprint_plugins/images/grid.png | Bin 0 -> 206 bytes .../images/link_icons/doc.png | Bin 0 -> 777 bytes .../images/link_icons/email.png | Bin 0 -> 641 bytes .../images/link_icons/external.png | Bin 0 -> 46848 bytes .../images/link_icons/feed.png | Bin 0 -> 691 bytes .../images/link_icons/im.png | Bin 0 -> 741 bytes .../images/link_icons/pdf.png | Bin 0 -> 591 bytes .../images/link_icons/visited.png | Bin 0 -> 46990 bytes .../images/link_icons/xls.png | Bin 0 -> 663 bytes .../blueprint_plugins/images/test-small.jpg | Bin 0 -> 1886 bytes .../blueprint_plugins/images/test.jpg | Bin 0 -> 35467 bytes .../blueprint_plugins/images/valid.png | Bin 0 -> 1669 bytes .../blueprint_plugins/index.html.haml | 96 + .../plugins/buttons.html.haml | 67 + .../plugins/fancy_type.html.haml | 100 + .../plugins/link_icons.html.haml | 61 + .../blueprint_plugins/plugins/rtl.html.haml | 100 + .../blueprint_plugins/src/buttons.sass | 49 + .../examples/blueprint_plugins/src/ie.sass | 3 + .../blueprint_plugins/src/images/grid.png | Bin 0 -> 206 bytes .../blueprint_plugins/src/link_icons.sass | 13 + .../examples/blueprint_plugins/src/print.sass | 3 + .../blueprint_plugins/src/rtl_screen.sass | 13 + .../blueprint_plugins/src/screen.sass | 11 + .../examples/blueprint_scoped/images/grid.png | Bin 0 -> 199 bytes .../examples/blueprint_scoped/src/ie.sass | 3 + .../examples/blueprint_scoped/src/print.sass | 3 + .../examples/blueprint_scoped/src/screen.sass | 4 + .../blueprint_scoped_form/images/grid.png | Bin 0 -> 199 bytes .../blueprint_scoped_form/src/ie.sass | 3 + .../blueprint_scoped_form/src/print.sass | 3 + .../blueprint_scoped_form/src/screen.sass | 10 + .../examples/blueprint_semantic/config.rb | 7 + .../blueprint_semantic/images/grid.png | Bin 0 -> 206 bytes .../blueprint_semantic/index.html.haml | 86 + .../parts/fancy_type.html.haml | 100 + .../blueprint_semantic/parts/liquid.html.haml | 100 + .../blueprint_semantic/parts/test-small.jpg | Bin 0 -> 1886 bytes .../blueprint_semantic/parts/test.jpg | Bin 0 -> 35467 bytes .../blueprint_semantic/parts/valid.png | Bin 0 -> 1669 bytes .../examples/blueprint_semantic/src/ie.sass | 3 + .../blueprint_semantic/src/images/grid.png | Bin 0 -> 206 bytes .../blueprint_semantic/src/liquid.sass | 70 + .../blueprint_semantic/src/print.sass | 3 + .../blueprint_semantic/src/screen.sass | 71 + .../examples/compass/compass.html.haml | 39 + .../examples/compass/config.rb | 7 + .../examples/compass/images/blue_arrow.gif | Bin 0 -> 51 bytes .../examples/compass/src/compass.sass | 47 + .../compass/src/images/blue_arrow.gif | Bin 0 -> 51 bytes .../examples/compass/src/sticky_footer.sass | 11 + .../examples/compass/src/utilities.sass | 108 + .../examples/compass/sticky_footer.html.haml | 14 + .../examples/compass/utilities.html.haml | 189 + .../examples/logo/logo.html.haml | 40 + .../examples/logo/src/ie.sass | 6 + .../examples/logo/src/print.sass | 6 + .../examples/logo/src/screen.sass | 29 + .../examples/yui/divisions.html.haml | 179 + .../examples/yui/index.html.haml | 19 + .../examples/yui/src/screen.sass | 13 + .../examples/yui/sub_divisions.html.haml | 169 + .../examples/yui/templates.html.haml | 54 + .../examples/yui/test.jpg | Bin 0 -> 35467 bytes .../examples/yui/typography.html.haml | 132 + .../frameworks/blueprint.rb | 2 + .../blueprint/stylesheets/_blueprint.sass | 3 + .../blueprint/stylesheets/blueprint/_ie.sass | 93 + .../stylesheets/blueprint/_print.sass | 83 + .../stylesheets/blueprint/_reset.sass | 3 + .../stylesheets/blueprint/_screen.sass | 15 + .../blueprint/modules/_buttons.sass | 84 + .../blueprint/modules/_colors.sass | 33 + .../stylesheets/blueprint/modules/_debug.sass | 9 + .../blueprint/modules/_fancy_type.sass | 82 + .../stylesheets/blueprint/modules/_form.sass | 55 + .../stylesheets/blueprint/modules/_grid.sass | 178 + .../blueprint/modules/_interaction.sass | 58 + .../blueprint/modules/_link_icons.sass | 44 + .../blueprint/modules/_liquid.sass | 141 + .../stylesheets/blueprint/modules/_reset.sass | 56 + .../stylesheets/blueprint/modules/_rtl.sass | 104 + .../blueprint/modules/_scaffolding.sass | 47 + .../blueprint/modules/_typography.sass | 155 + .../blueprint/modules/_utilities.sass | 37 + .../blueprint/templates/buttons/buttons.sass | 49 + .../templates/buttons/buttons/cross.png | Bin 0 -> 655 bytes .../templates/buttons/buttons/key.png | Bin 0 -> 455 bytes .../templates/buttons/buttons/tick.png | Bin 0 -> 537 bytes .../blueprint/templates/buttons/manifest.rb | 5 + .../templates/link_icons/link_icons.sass | 13 + .../templates/link_icons/link_icons/doc.png | Bin 0 -> 777 bytes .../templates/link_icons/link_icons/email.png | Bin 0 -> 641 bytes .../link_icons/link_icons/external.png | Bin 0 -> 46848 bytes .../templates/link_icons/link_icons/feed.png | Bin 0 -> 691 bytes .../templates/link_icons/link_icons/im.png | Bin 0 -> 741 bytes .../templates/link_icons/link_icons/pdf.png | Bin 0 -> 591 bytes .../link_icons/link_icons/visited.png | Bin 0 -> 46990 bytes .../templates/link_icons/link_icons/xls.png | Bin 0 -> 663 bytes .../templates/link_icons/manifest.rb | 10 + .../blueprint/templates/project/grid.png | Bin 0 -> 206 bytes .../blueprint/templates/project/ie.sass | 15 + .../blueprint/templates/project/manifest.rb | 6 + .../templates/project/partials/_base.sass | 11 + .../blueprint/templates/project/print.sass | 3 + .../blueprint/templates/project/screen.sass | 40 + .../frameworks/compass.rb | 2 + .../compass/stylesheets/_compass.sass | 1 + .../compass/stylesheets/compass/_layout.sass | 1 + .../compass/stylesheets/compass/_misc.sass | 24 + .../compass/stylesheets/compass/_reset.sass | 3 + .../stylesheets/compass/_utilities.sass | 6 + .../compass/layout/_sticky_footer.sass | 17 + .../compass/utilities/_general.sass | 6 + .../stylesheets/compass/utilities/_links.sass | 3 + .../stylesheets/compass/utilities/_lists.sass | 3 + .../stylesheets/compass/utilities/_print.sass | 24 + .../compass/utilities/_sprites.sass | 1 + .../compass/utilities/_tables.sass | 3 + .../stylesheets/compass/utilities/_text.sass | 2 + .../compass/utilities/general/_clearfix.sass | 24 + .../compass/utilities/general/_float.sass | 17 + .../compass/utilities/general/_hacks.sass | 6 + .../utilities/general/_inline_block.sass | 6 + .../compass/utilities/general/_reset.sass | 134 + .../compass/utilities/general/_tabs.sass | 0 .../compass/utilities/general/_tag_cloud.sass | 19 + .../compass/utilities/links/_hover_link.sass | 5 + .../compass/utilities/links/_link_colors.sass | 24 + .../utilities/links/_unstyled_link.sass | 5 + .../compass/utilities/lists/_bullets.sass | 21 + .../utilities/lists/_horizontal_list.sass | 52 + .../compass/utilities/lists/_inline_list.sass | 29 + .../utilities/sprites/_sprite_img.sass | 12 + .../tables/_alternating_rows_and_columns.sass | 20 + .../compass/utilities/tables/_borders.sass | 27 + .../utilities/tables/_scaffolding.sass | 9 + .../compass/utilities/text/_ellipsis.sass | 13 + .../compass/utilities/text/_nowrap.sass | 3 + .../compass/utilities/text/_replacement.sass | 17 + .../compass/templates/ellipsis/ellipsis.sass | 6 + .../compass/templates/ellipsis/manifest.rb | 2 + .../templates/ellipsis/xml/ellipsis.xml | 14 + .../compass/templates/project/ie.sass | 6 + .../compass/templates/project/manifest.rb | 3 + .../compass/templates/project/print.sass | 6 + .../compass/templates/project/screen.sass | 13 + .../frameworks/yui.rb | 2 + .../frameworks/yui/stylesheets/_yui.sass | 7 + .../yui/stylesheets/yui/modules/_base.sass | 60 + .../yui/stylesheets/yui/modules/_fonts.sass | 38 + .../yui/stylesheets/yui/modules/_grids.sass | 341 + .../yui/stylesheets/yui/modules/_reset.sass | 61 + .../yui/templates/project/manifest.rb | 1 + .../yui/templates/project/screen.sass | 4 + .../lib/compass.rb | 23 + .../lib/compass/actions.rb | 110 + .../lib/compass/app_integration.rb | 5 + .../lib/compass/app_integration/merb.rb | 43 + .../lib/compass/app_integration/rails.rb | 12 + .../rails/action_controller.rb | 15 + .../app_integration/rails/sass_plugin.rb | 5 + .../rails/templates/compass-install-rails.rb | 80 + .../lib/compass/app_integration/rails/urls.rb | 14 + .../lib/compass/commands/base.rb | 33 + .../lib/compass/commands/create_project.rb | 19 + .../commands/generate_grid_background.rb | 24 + .../lib/compass/commands/installer_command.rb | 31 + .../lib/compass/commands/list_frameworks.rb | 16 + .../lib/compass/commands/print_version.rb | 23 + .../lib/compass/commands/project_base.rb | 112 + .../lib/compass/commands/stamp_pattern.rb | 33 + .../lib/compass/commands/update_project.rb | 34 + .../lib/compass/commands/validate_project.rb | 21 + .../lib/compass/commands/watch_project.rb | 64 + .../compass/commands/write_configuration.rb | 28 + .../lib/compass/compiler.rb | 54 + .../lib/compass/configuration.rb | 324 + .../lib/compass/core_ext.rb | 14 + .../lib/compass/dependencies.rb | 10 + .../lib/compass/errors.rb | 7 + .../lib/compass/exec.rb | 251 + .../lib/compass/frameworks.rb | 29 + .../lib/compass/grid_builder.rb | 72 + .../lib/compass/installers.rb | 5 + .../lib/compass/installers/base.rb | 158 + .../lib/compass/installers/manifest.rb | 58 + .../lib/compass/installers/rails.rb | 135 + .../lib/compass/installers/stand_alone.rb | 60 + .../lib/compass/logger.rb | 42 + .../lib/compass/sass_extensions.rb | 5 + .../lib/compass/sass_extensions/functions.rb | 19 + .../sass_extensions/functions/display.rb | 22 + .../sass_extensions/functions/enumerate.rb | 6 + .../sass_extensions/functions/inline_image.rb | 35 + .../sass_extensions/functions/selectors.rb | 39 + .../compass/sass_extensions/functions/urls.rb | 105 + .../compass/sass_extensions/monkey_patches.rb | 3 + .../monkey_patches/stylesheet_updating.rb | 23 + .../lib/compass/test_case.rb | 38 + .../lib/compass/validator.rb | 10 + .../lib/compass/version.rb | 57 + .../lib/vendor/fssm.rb | 41 + .../lib/vendor/fssm/backends/fsevents.rb | 37 + .../lib/vendor/fssm/backends/polling.rb | 26 + .../lib/vendor/fssm/cache.rb | 193 + .../lib/vendor/fssm/ext.rb | 37 + .../lib/vendor/fssm/fsevents.rb | 129 + .../lib/vendor/fssm/monitor.rb | 25 + .../lib/vendor/fssm/path.rb | 91 + .../lib/vendor/fssm/state.rb | 54 + .../lib/vendor/fssm/support.rb | 22 + .../lib/vendor/fssm/tree.rb | 176 + .../test/command_line_helper.rb | 102 + .../test/command_line_test.rb | 66 + .../test/compass_test.rb | 141 + .../test/configuration_test.rb | 118 + .../fixtures/stylesheets/blueprint/config.rb | 9 + .../stylesheets/blueprint/css/typography.css | 158 + .../stylesheets/blueprint/images/grid.png | Bin 0 -> 199 bytes .../stylesheets/blueprint/sass/ie.sass | 3 + .../stylesheets/blueprint/sass/print.sass | 3 + .../stylesheets/blueprint/sass/screen.sass | 17 + .../blueprint/sass/typography.sass | 3 + .../fixtures/stylesheets/compass/config.rb | 9 + .../stylesheets/compass/css/layout.css | 13 + .../stylesheets/compass/css/print.css | 18 + .../stylesheets/compass/css/reset.css | 60 + .../stylesheets/compass/css/utilities.css | 17 + .../stylesheets/compass/sass/layout.sass | 3 + .../stylesheets/compass/sass/print.sass | 5 + .../stylesheets/compass/sass/reset.sass | 10 + .../stylesheets/compass/sass/utilities.sass | 6 + .../fixtures/stylesheets/image_urls/config.rb | 17 + .../stylesheets/image_urls/css/screen.css | 3 + .../stylesheets/image_urls/images/grid.png | Bin 0 -> 199 bytes .../stylesheets/image_urls/sass/screen.sass | 6 + .../test/fixtures/stylesheets/yui/config.rb | 9 + .../fixtures/stylesheets/yui/css/mixins.css | 13 + .../fixtures/stylesheets/yui/sass/base.sass | 3 + .../fixtures/stylesheets/yui/sass/fonts.sass | 3 + .../fixtures/stylesheets/yui/sass/grids.sass | 3 + .../fixtures/stylesheets/yui/sass/mixins.sass | 16 + .../test/rails_integration_test.rb | 83 + .../test/sass_extensions_test.rb | 31 + .../test/test_case_helper.rb | 13 + .../test/test_helper.rb | 21 + .../test/test_rails_helper.rb | 20 + vendor/gems/haml-2.2.16/.specification | 287 + vendor/gems/haml-2.2.16/.yardopts | 5 + vendor/gems/haml-2.2.16/CONTRIBUTING | 4 + vendor/gems/haml-2.2.16/MIT-LICENSE | 20 + vendor/gems/haml-2.2.16/README.md | 357 + vendor/gems/haml-2.2.16/REVISION | 1 + vendor/gems/haml-2.2.16/Rakefile | 392 + vendor/gems/haml-2.2.16/VERSION | 1 + vendor/gems/haml-2.2.16/VERSION_NAME | 1 + vendor/gems/haml-2.2.16/bin/css2sass | 7 + vendor/gems/haml-2.2.16/bin/haml | 9 + vendor/gems/haml-2.2.16/bin/html2haml | 7 + vendor/gems/haml-2.2.16/bin/sass | 8 + vendor/gems/haml-2.2.16/extra/haml-mode.el | 662 + vendor/gems/haml-2.2.16/extra/sass-mode.el | 206 + vendor/gems/haml-2.2.16/extra/update_watch.rb | 13 + vendor/gems/haml-2.2.16/init.rb | 16 + vendor/gems/haml-2.2.16/lib/haml.rb | 40 + vendor/gems/haml-2.2.16/lib/haml/buffer.rb | 302 + vendor/gems/haml-2.2.16/lib/haml/engine.rb | 299 + vendor/gems/haml-2.2.16/lib/haml/error.rb | 22 + vendor/gems/haml-2.2.16/lib/haml/exec.rb | 459 + vendor/gems/haml-2.2.16/lib/haml/filters.rb | 341 + vendor/gems/haml-2.2.16/lib/haml/helpers.rb | 563 + .../haml/helpers/action_view_extensions.rb | 55 + .../lib/haml/helpers/action_view_mods.rb | 177 + .../haml-2.2.16/lib/haml/helpers/xss_mods.rb | 95 + vendor/gems/haml-2.2.16/lib/haml/html.rb | 259 + .../gems/haml-2.2.16/lib/haml/precompiler.rb | 1043 + vendor/gems/haml-2.2.16/lib/haml/shared.rb | 78 + vendor/gems/haml-2.2.16/lib/haml/template.rb | 85 + .../haml-2.2.16/lib/haml/template/patch.rb | 58 + .../haml-2.2.16/lib/haml/template/plugin.rb | 75 + vendor/gems/haml-2.2.16/lib/haml/util.rb | 289 + vendor/gems/haml-2.2.16/lib/haml/version.rb | 64 + vendor/gems/haml-2.2.16/lib/sass.rb | 24 + vendor/gems/haml-2.2.16/lib/sass/css.rb | 404 + vendor/gems/haml-2.2.16/lib/sass/engine.rb | 475 + .../gems/haml-2.2.16/lib/sass/environment.rb | 79 + vendor/gems/haml-2.2.16/lib/sass/error.rb | 57 + vendor/gems/haml-2.2.16/lib/sass/files.rb | 140 + vendor/gems/haml-2.2.16/lib/sass/plugin.rb | 225 + .../gems/haml-2.2.16/lib/sass/plugin/merb.rb | 49 + .../gems/haml-2.2.16/lib/sass/plugin/rack.rb | 65 + .../gems/haml-2.2.16/lib/sass/plugin/rails.rb | 24 + vendor/gems/haml-2.2.16/lib/sass/repl.rb | 58 + vendor/gems/haml-2.2.16/lib/sass/script.rb | 59 + .../gems/haml-2.2.16/lib/sass/script/bool.rb | 17 + .../gems/haml-2.2.16/lib/sass/script/color.rb | 220 + .../haml-2.2.16/lib/sass/script/funcall.rb | 50 + .../haml-2.2.16/lib/sass/script/functions.rb | 252 + .../gems/haml-2.2.16/lib/sass/script/lexer.rb | 191 + .../haml-2.2.16/lib/sass/script/literal.rb | 177 + .../gems/haml-2.2.16/lib/sass/script/node.rb | 14 + .../haml-2.2.16/lib/sass/script/number.rb | 381 + .../haml-2.2.16/lib/sass/script/operation.rb | 45 + .../haml-2.2.16/lib/sass/script/parser.rb | 222 + .../haml-2.2.16/lib/sass/script/string.rb | 12 + .../lib/sass/script/unary_operation.rb | 34 + .../haml-2.2.16/lib/sass/script/variable.rb | 31 + .../haml-2.2.16/lib/sass/tree/comment_node.rb | 84 + .../haml-2.2.16/lib/sass/tree/debug_node.rb | 30 + .../lib/sass/tree/directive_node.rb | 68 + .../haml-2.2.16/lib/sass/tree/for_node.rb | 48 + .../gems/haml-2.2.16/lib/sass/tree/if_node.rb | 54 + .../haml-2.2.16/lib/sass/tree/import_node.rb | 65 + .../lib/sass/tree/mixin_def_node.rb | 29 + .../haml-2.2.16/lib/sass/tree/mixin_node.rb | 48 + vendor/gems/haml-2.2.16/lib/sass/tree/node.rb | 251 + .../haml-2.2.16/lib/sass/tree/prop_node.rb | 121 + .../haml-2.2.16/lib/sass/tree/rule_node.rb | 223 + .../lib/sass/tree/variable_node.rb | 34 + .../haml-2.2.16/lib/sass/tree/while_node.rb | 31 + vendor/gems/haml-2.2.16/rails/init.rb | 1 + vendor/gems/haml-2.2.16/test/benchmark.rb | 99 + .../gems/haml-2.2.16/test/haml/engine_test.rb | 1247 + .../gems/haml-2.2.16/test/haml/helper_test.rb | 282 + .../haml-2.2.16/test/haml/html2haml_test.rb | 139 + .../test/haml/markaby/standard.mab | 52 + .../haml-2.2.16/test/haml/mocks/article.rb | 6 + .../haml/results/content_for_layout.xhtml | 12 + .../test/haml/results/eval_suppressed.xhtml | 9 + .../test/haml/results/filters.xhtml | 62 + .../test/haml/results/helpers.xhtml | 93 + .../test/haml/results/helpful.xhtml | 10 + .../test/haml/results/just_stuff.xhtml | 68 + .../haml-2.2.16/test/haml/results/list.xhtml | 12 + .../haml/results/nuke_inner_whitespace.xhtml | 40 + .../haml/results/nuke_outer_whitespace.xhtml | 148 + .../test/haml/results/original_engine.xhtml | 20 + .../test/haml/results/partial_layout.xhtml | 5 + .../test/haml/results/partials.xhtml | 21 + .../test/haml/results/render_layout.xhtml | 3 + .../test/haml/results/silent_script.xhtml | 74 + .../test/haml/results/standard.xhtml | 162 + .../test/haml/results/tag_parsing.xhtml | 23 + .../test/haml/results/very_basic.xhtml | 5 + .../haml/results/whitespace_handling.xhtml | 89 + .../test/haml/rhtml/_av_partial_1.rhtml | 12 + .../test/haml/rhtml/_av_partial_2.rhtml | 8 + .../test/haml/rhtml/action_view.rhtml | 62 + .../test/haml/rhtml/standard.rhtml | 54 + .../gems/haml-2.2.16/test/haml/spec/README.md | 97 + .../test/haml/spec/lua_haml_spec.lua | 30 + .../test/haml/spec/ruby_haml_test.rb | 19 + .../haml-2.2.16/test/haml/spec/tests.json | 488 + .../haml-2.2.16/test/haml/template_test.rb | 296 + .../test/haml/templates/_av_partial_1.haml | 9 + .../haml/templates/_av_partial_1_ugly.haml | 9 + .../test/haml/templates/_av_partial_2.haml | 5 + .../haml/templates/_av_partial_2_ugly.haml | 5 + .../test/haml/templates/_layout.erb | 3 + .../haml/templates/_layout_for_partial.haml | 3 + .../test/haml/templates/_partial.haml | 8 + .../test/haml/templates/_text_area.haml | 3 + .../test/haml/templates/action_view.haml | 47 + .../test/haml/templates/action_view_ugly.haml | 47 + .../test/haml/templates/breakage.haml | 8 + .../haml/templates/content_for_layout.haml | 8 + .../test/haml/templates/eval_suppressed.haml | 11 + .../test/haml/templates/filters.haml | 66 + .../test/haml/templates/helpers.haml | 95 + .../test/haml/templates/helpful.haml | 11 + .../test/haml/templates/just_stuff.haml | 83 + .../haml-2.2.16/test/haml/templates/list.haml | 12 + .../haml/templates/nuke_inner_whitespace.haml | 32 + .../haml/templates/nuke_outer_whitespace.haml | 144 + .../test/haml/templates/original_engine.haml | 17 + .../test/haml/templates/partial_layout.haml | 3 + .../test/haml/templates/partialize.haml | 1 + .../test/haml/templates/partials.haml | 12 + .../test/haml/templates/render_layout.haml | 2 + .../test/haml/templates/silent_script.haml | 40 + .../test/haml/templates/standard.haml | 42 + .../test/haml/templates/standard_ugly.haml | 42 + .../test/haml/templates/tag_parsing.haml | 21 + .../test/haml/templates/very_basic.haml | 4 + .../haml/templates/whitespace_handling.haml | 87 + .../gems/haml-2.2.16/test/haml/util_test.rb | 107 + vendor/gems/haml-2.2.16/test/linked_rails.rb | 21 + .../haml-2.2.16/test/sass/css2sass_test.rb | 251 + .../gems/haml-2.2.16/test/sass/engine_test.rb | 914 + .../haml-2.2.16/test/sass/functions_test.rb | 173 + .../test/sass/more_results/more1.css | 9 + .../more_results/more1_with_line_comments.css | 26 + .../test/sass/more_results/more_import.css | 29 + .../sass/more_templates/_more_partial.sass | 2 + .../test/sass/more_templates/more1.sass | 23 + .../test/sass/more_templates/more_import.sass | 11 + .../gems/haml-2.2.16/test/sass/plugin_test.rb | 222 + .../haml-2.2.16/test/sass/results/alt.css | 4 + .../haml-2.2.16/test/sass/results/basic.css | 9 + .../haml-2.2.16/test/sass/results/compact.css | 5 + .../haml-2.2.16/test/sass/results/complex.css | 87 + .../test/sass/results/compressed.css | 1 + .../test/sass/results/expanded.css | 19 + .../haml-2.2.16/test/sass/results/import.css | 29 + .../test/sass/results/line_numbers.css | 49 + .../haml-2.2.16/test/sass/results/mixins.css | 95 + .../test/sass/results/multiline.css | 24 + .../haml-2.2.16/test/sass/results/nested.css | 22 + .../test/sass/results/parent_ref.css | 13 + .../haml-2.2.16/test/sass/results/script.css | 16 + .../subdir/nested_subdir/nested_subdir.css | 1 + .../test/sass/results/subdir/subdir.css | 3 + .../haml-2.2.16/test/sass/results/units.css | 11 + .../gems/haml-2.2.16/test/sass/script_test.rb | 267 + .../test/sass/templates/_partial.sass | 2 + .../haml-2.2.16/test/sass/templates/alt.sass | 16 + .../test/sass/templates/basic.sass | 23 + .../haml-2.2.16/test/sass/templates/bork.sass | 2 + .../test/sass/templates/bork2.sass | 2 + .../test/sass/templates/compact.sass | 17 + .../test/sass/templates/complex.sass | 307 + .../test/sass/templates/compressed.sass | 15 + .../test/sass/templates/expanded.sass | 17 + .../test/sass/templates/import.sass | 11 + .../test/sass/templates/importee.sass | 19 + .../test/sass/templates/line_numbers.sass | 13 + .../test/sass/templates/mixins.sass | 76 + .../test/sass/templates/multiline.sass | 20 + .../test/sass/templates/nested.sass | 25 + .../test/sass/templates/parent_ref.sass | 25 + .../test/sass/templates/script.sass | 101 + .../subdir/nested_subdir/_nested_partial.sass | 2 + .../subdir/nested_subdir/nested_subdir.sass | 3 + .../test/sass/templates/subdir/subdir.sass | 6 + .../test/sass/templates/units.sass | 11 + vendor/gems/haml-2.2.16/test/test_helper.rb | 35 + vendor/plugins/compass/init.rb | 2 + vendor/plugins/haml/init.rb | 16 + 589 files changed, 140026 insertions(+) create mode 100644 Gemfile create mode 100644 README create mode 100644 Rakefile create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/registrations_controller.rb create mode 100644 app/helpers/application_helper.rb create mode 100644 app/helpers/days_of_action_helper.rb create mode 100644 app/models/business_hours_scheduler.rb create mode 100644 app/models/day_of_action.rb create mode 100644 app/models/registration.rb create mode 100644 app/models/time_slot.rb create mode 100644 app/stylesheets/ie.sass create mode 100644 app/stylesheets/partials/_base.sass create mode 100644 app/stylesheets/print.sass create mode 100644 app/stylesheets/screen.sass create mode 100644 app/views/registrations/new.html.haml create mode 100644 config/boot.rb create mode 100644 config/compass.config create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/cucumber.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/compass.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/new_rails_defaults.rb create mode 100644 config/initializers/session_store.rb create mode 100644 config/locales/en.yml create mode 100644 config/routes.rb create mode 100644 db/development.sqlite3 create mode 100644 db/migrate/20091228021133_create_day_of_actions.rb create mode 100644 db/migrate/20091229030847_create_time_slots.rb create mode 100644 db/migrate/20091231024604_create_registrations.rb create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 db/test.sqlite3 create mode 100644 doc/README_FOR_APP create mode 100644 features/register_for_timeslot.feature create mode 100644 features/step_definitions/register_for_timeslot_steps.rb create mode 100644 features/step_definitions/view_roster_steps.rb create mode 100644 features/step_definitions/webrat_steps.rb create mode 100644 features/support/env.rb create mode 100644 features/support/paths.rb create mode 100644 features/support/version_check.rb create mode 100644 features/view_roster.feature create mode 100644 lib/tasks/cucumber.rake create mode 100644 lib/tasks/rspec.rake create mode 100644 log/cucumber.log create mode 100644 log/development.log create mode 100644 log/production.log create mode 100644 log/server.log create mode 100644 log/test.log create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/favicon.ico create mode 100644 public/images/grid.png create mode 100644 public/images/rails.png create mode 100644 public/index.html create mode 100644 public/javascripts/application.js create mode 100644 public/javascripts/controls.js create mode 100644 public/javascripts/dragdrop.js create mode 100644 public/javascripts/effects.js create mode 100644 public/javascripts/prototype.js create mode 100644 public/robots.txt create mode 100644 public/stylesheets/compiled/ie.css create mode 100644 public/stylesheets/compiled/print.css create mode 100644 public/stylesheets/compiled/screen.css create mode 100755 script/about create mode 100755 script/autospec create mode 100755 script/console create mode 100755 script/cucumber create mode 100755 script/dbconsole create mode 100755 script/destroy create mode 100755 script/generate create mode 100755 script/performance/benchmarker create mode 100755 script/performance/profiler create mode 100755 script/plugin create mode 100755 script/runner create mode 100755 script/server create mode 100755 script/spec create mode 100644 spec/controllers/registrations_controller_spec.rb create mode 100644 spec/fixtures/day_of_actions.yml create mode 100644 spec/fixtures/registrations.yml create mode 100644 spec/fixtures/time_slots.yml create mode 100644 spec/helpers/days_of_action_helper_spec.rb create mode 100644 spec/models/business_hours_scheduler_spec.rb create mode 100644 spec/models/day_of_action_spec.rb create mode 100644 spec/models/time_slot_spec.rb create mode 100644 spec/rcov.opts create mode 100644 spec/spec.opts create mode 100644 spec/spec_helper.rb create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_colors.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_debug.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_form.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_grid.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_interaction.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_reset.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_scaffolding.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_typography.sassc create mode 100644 tmp/sass-cache/1216fb84a6a1cc9b730c36111d36f6b58308bfbc/_utilities.sassc create mode 100644 tmp/sass-cache/1c4b0e5f76ac44bf861c8e164e0ae88e1a4580c2/_blueprint.sassc create mode 100644 tmp/sass-cache/35ed1bf871d3e03fe87b1c8792598726ac4d35a4/ie.sassc create mode 100644 tmp/sass-cache/35ed1bf871d3e03fe87b1c8792598726ac4d35a4/print.sassc create mode 100644 tmp/sass-cache/35ed1bf871d3e03fe87b1c8792598726ac4d35a4/screen.sassc create mode 100644 tmp/sass-cache/36f469e79e949a76c2b61b3f48974c266db17bdb/_clearfix.sassc create mode 100644 tmp/sass-cache/36f469e79e949a76c2b61b3f48974c266db17bdb/_float.sassc create mode 100644 tmp/sass-cache/36f469e79e949a76c2b61b3f48974c266db17bdb/_hacks.sassc create mode 100644 tmp/sass-cache/642466119e6942e57e9b21d985ac325a571897c9/_nowrap.sassc create mode 100644 tmp/sass-cache/775129290f646213db1bef3667b36faafc27a5a6/_link_colors.sassc create mode 100644 tmp/sass-cache/7b8b5158bbed1b74dffb43dafff53c637d94f000/_base.sassc create mode 100644 tmp/sass-cache/d577e608d467c75d955070f0b183c7e2d0c69dfa/roster.sassc create mode 100644 tmp/sass-cache/deb9426f7427f4a52ebafc592a62c33edf5af5b6/_alternating_rows_and_columns.sassc create mode 100644 tmp/sass-cache/deb9426f7427f4a52ebafc592a62c33edf5af5b6/_borders.sassc create mode 100644 tmp/sass-cache/deb9426f7427f4a52ebafc592a62c33edf5af5b6/_scaffolding.sassc create mode 100644 tmp/sass-cache/ea0e5104855c3fa921ec9da6bfc7fa8831006267/_tables.sassc create mode 100644 tmp/sass-cache/f36b9349dc93c1bdf9fb386a8a95487ec4d0650e/_ie.sassc create mode 100644 tmp/sass-cache/f36b9349dc93c1bdf9fb386a8a95487ec4d0650e/_print.sassc create mode 100644 tmp/sass-cache/f36b9349dc93c1bdf9fb386a8a95487ec4d0650e/_reset.sassc create mode 100644 tmp/sass-cache/f36b9349dc93c1bdf9fb386a8a95487ec4d0650e/_screen.sassc create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/.specification create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/CHANGELOG.markdown create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/LICENSE.markdown create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/README.markdown create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/REVISION create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/Rakefile create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/VERSION.yml create mode 100755 vendor/gems/chriseppstein-compass-0.8.17/bin/compass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/deps.rip create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/README.markdown create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/index.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/parts/elements.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/parts/forms.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/parts/grid.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/parts/test-small.jpg create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/parts/test.jpg create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/parts/valid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/src/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/src/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/src/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_default/src/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/buttons/cross.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/buttons/key.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/buttons/tick.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/doc.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/email.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/external.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/feed.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/im.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/pdf.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/visited.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/link_icons/xls.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/test-small.jpg create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/test.jpg create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/images/valid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/index.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/plugins/buttons.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/plugins/fancy_type.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/plugins/link_icons.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/plugins/rtl.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/src/buttons.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/src/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/src/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/src/link_icons.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/src/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/src/rtl_screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_plugins/src/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped/src/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped/src/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped/src/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped_form/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped_form/src/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped_form/src/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_scoped_form/src/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/index.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/parts/fancy_type.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/parts/liquid.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/parts/test-small.jpg create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/parts/test.jpg create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/parts/valid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/src/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/src/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/src/liquid.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/src/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/blueprint_semantic/src/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/compass.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/images/blue_arrow.gif create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/src/compass.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/src/images/blue_arrow.gif create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/src/sticky_footer.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/src/utilities.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/sticky_footer.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/compass/utilities.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/logo/logo.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/logo/src/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/logo/src/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/logo/src/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/yui/divisions.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/yui/index.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/yui/src/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/yui/sub_divisions.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/yui/templates.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/yui/test.jpg create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/examples/yui/typography.html.haml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/_blueprint.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/_ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/_print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/_reset.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/_screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_buttons.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_link_icons.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/buttons/buttons.sass create mode 100755 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/buttons/buttons/cross.png create mode 100755 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/buttons/buttons/key.png create mode 100755 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/buttons/buttons/tick.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/buttons/manifest.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/doc.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/email.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/external.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/feed.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/im.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/pdf.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/visited.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/link_icons/xls.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/link_icons/manifest.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/project/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/project/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/project/manifest.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/project/partials/_base.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/project/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/blueprint/templates/project/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/_compass.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/_layout.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/_misc.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/_reset.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/_utilities.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/_general.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/_links.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/_lists.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/_print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/_sprites.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/_tables.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/_text.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_float.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_hacks.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_reset.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite_img.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/tables/_borders.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/text/_ellipsis.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/templates/ellipsis/ellipsis.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/templates/ellipsis/manifest.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/templates/ellipsis/xml/ellipsis.xml create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/templates/project/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/templates/project/manifest.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/templates/project/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/compass/templates/project/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui/stylesheets/_yui.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui/stylesheets/yui/modules/_base.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui/stylesheets/yui/modules/_fonts.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui/stylesheets/yui/modules/_grids.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui/stylesheets/yui/modules/_reset.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui/templates/project/manifest.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/frameworks/yui/templates/project/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/actions.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/merb.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/sass_plugin.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/templates/compass-install-rails.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/urls.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/base.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/create_project.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/generate_grid_background.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/installer_command.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/list_frameworks.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/print_version.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/project_base.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/stamp_pattern.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/update_project.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/validate_project.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/watch_project.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/commands/write_configuration.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/compiler.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/configuration.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/core_ext.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/dependencies.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/errors.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/exec.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/frameworks.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/grid_builder.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/installers.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/installers/base.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/installers/manifest.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/installers/rails.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/installers/stand_alone.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/logger.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/functions.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/functions/display.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/functions/enumerate.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/functions/inline_image.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/functions/selectors.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/functions/urls.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/monkey_patches.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/sass_extensions/monkey_patches/stylesheet_updating.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/test_case.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/validator.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/compass/version.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/backends/fsevents.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/backends/polling.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/cache.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/ext.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/fsevents.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/monitor.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/path.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/state.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/support.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/lib/vendor/fssm/tree.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/command_line_helper.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/command_line_test.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/compass_test.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/configuration_test.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/blueprint/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/blueprint/css/typography.css create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/blueprint/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/blueprint/sass/ie.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/blueprint/sass/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/blueprint/sass/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/blueprint/sass/typography.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/css/layout.css create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/css/print.css create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/css/reset.css create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/css/utilities.css create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/sass/layout.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/sass/print.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/sass/reset.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/compass/sass/utilities.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/image_urls/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/image_urls/css/screen.css create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/image_urls/images/grid.png create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/image_urls/sass/screen.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/yui/config.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/yui/css/mixins.css create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/yui/sass/base.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/yui/sass/fonts.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/yui/sass/grids.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/fixtures/stylesheets/yui/sass/mixins.sass create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/rails_integration_test.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/sass_extensions_test.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/test_case_helper.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/test_helper.rb create mode 100644 vendor/gems/chriseppstein-compass-0.8.17/test/test_rails_helper.rb create mode 100644 vendor/gems/haml-2.2.16/.specification create mode 100644 vendor/gems/haml-2.2.16/.yardopts create mode 100644 vendor/gems/haml-2.2.16/CONTRIBUTING create mode 100644 vendor/gems/haml-2.2.16/MIT-LICENSE create mode 100644 vendor/gems/haml-2.2.16/README.md create mode 100644 vendor/gems/haml-2.2.16/REVISION create mode 100644 vendor/gems/haml-2.2.16/Rakefile create mode 100644 vendor/gems/haml-2.2.16/VERSION create mode 100644 vendor/gems/haml-2.2.16/VERSION_NAME create mode 100755 vendor/gems/haml-2.2.16/bin/css2sass create mode 100755 vendor/gems/haml-2.2.16/bin/haml create mode 100755 vendor/gems/haml-2.2.16/bin/html2haml create mode 100755 vendor/gems/haml-2.2.16/bin/sass create mode 100644 vendor/gems/haml-2.2.16/extra/haml-mode.el create mode 100644 vendor/gems/haml-2.2.16/extra/sass-mode.el create mode 100644 vendor/gems/haml-2.2.16/extra/update_watch.rb create mode 100644 vendor/gems/haml-2.2.16/init.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/buffer.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/engine.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/error.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/exec.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/filters.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/helpers.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_extensions.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/helpers/xss_mods.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/html.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/precompiler.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/shared.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/template.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/template/patch.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/template/plugin.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/util.rb create mode 100644 vendor/gems/haml-2.2.16/lib/haml/version.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/css.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/engine.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/environment.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/error.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/files.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/plugin.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/plugin/merb.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/plugin/rack.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/repl.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/bool.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/color.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/funcall.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/functions.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/lexer.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/literal.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/number.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/operation.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/parser.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/string.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/unary_operation.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/script/variable.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/comment_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/debug_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/directive_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/for_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/if_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/import_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/mixin_def_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/mixin_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/prop_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/rule_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/variable_node.rb create mode 100644 vendor/gems/haml-2.2.16/lib/sass/tree/while_node.rb create mode 100644 vendor/gems/haml-2.2.16/rails/init.rb create mode 100755 vendor/gems/haml-2.2.16/test/benchmark.rb create mode 100644 vendor/gems/haml-2.2.16/test/haml/engine_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/haml/helper_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/haml/html2haml_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/haml/markaby/standard.mab create mode 100644 vendor/gems/haml-2.2.16/test/haml/mocks/article.rb create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/content_for_layout.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/eval_suppressed.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/filters.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/helpers.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/helpful.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/just_stuff.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/list.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/nuke_inner_whitespace.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/nuke_outer_whitespace.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/original_engine.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/partial_layout.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/partials.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/render_layout.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/silent_script.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/standard.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/tag_parsing.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/very_basic.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/results/whitespace_handling.xhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_1.rhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_2.rhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/rhtml/action_view.rhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/rhtml/standard.rhtml create mode 100644 vendor/gems/haml-2.2.16/test/haml/spec/README.md create mode 100644 vendor/gems/haml-2.2.16/test/haml/spec/lua_haml_spec.lua create mode 100644 vendor/gems/haml-2.2.16/test/haml/spec/ruby_haml_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/haml/spec/tests.json create mode 100644 vendor/gems/haml-2.2.16/test/haml/template_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1_ugly.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2_ugly.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_layout.erb create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_layout_for_partial.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_partial.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/_text_area.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/action_view.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/action_view_ugly.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/breakage.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/content_for_layout.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/eval_suppressed.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/filters.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/helpers.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/helpful.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/just_stuff.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/list.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/nuke_inner_whitespace.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/nuke_outer_whitespace.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/original_engine.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/partial_layout.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/partialize.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/partials.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/render_layout.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/silent_script.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/standard.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/standard_ugly.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/tag_parsing.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/very_basic.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/templates/whitespace_handling.haml create mode 100644 vendor/gems/haml-2.2.16/test/haml/util_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/linked_rails.rb create mode 100644 vendor/gems/haml-2.2.16/test/sass/css2sass_test.rb create mode 100755 vendor/gems/haml-2.2.16/test/sass/engine_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/sass/functions_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/sass/more_results/more1.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/more_results/more1_with_line_comments.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/more_results/more_import.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/more_templates/_more_partial.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/more_templates/more1.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/more_templates/more_import.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/plugin_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/alt.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/basic.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/compact.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/complex.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/compressed.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/expanded.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/import.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/line_numbers.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/mixins.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/multiline.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/nested.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/parent_ref.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/script.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/subdir/nested_subdir/nested_subdir.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/subdir/subdir.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/results/units.css create mode 100644 vendor/gems/haml-2.2.16/test/sass/script_test.rb create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/_partial.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/alt.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/basic.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/bork.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/bork2.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/compact.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/complex.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/compressed.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/expanded.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/import.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/importee.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/line_numbers.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/mixins.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/multiline.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/nested.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/parent_ref.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/script.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/_nested_partial.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/nested_subdir.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/subdir/subdir.sass create mode 100644 vendor/gems/haml-2.2.16/test/sass/templates/units.sass create mode 100644 vendor/gems/haml-2.2.16/test/test_helper.rb create mode 100644 vendor/plugins/compass/init.rb create mode 100644 vendor/plugins/haml/init.rb diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..37ec8ea --- /dev/null +++ b/README @@ -0,0 +1,243 @@ +== Welcome to Rails + +Rails is a web-application framework that includes everything needed to create +database-backed web applications according to the Model-View-Control pattern. + +This pattern splits the view (also called the presentation) into "dumb" templates +that are primarily responsible for inserting pre-built data in between HTML tags. +The model contains the "smart" domain objects (such as Account, Product, Person, +Post) that holds all the business logic and knows how to persist themselves to +a database. The controller handles the incoming requests (such as Save New Account, +Update Product, Show Post) by manipulating the model and directing data to the view. + +In Rails, the model is handled by what's called an object-relational mapping +layer entitled Active Record. This layer allows you to present the data from +database rows as objects and embellish these data objects with business logic +methods. You can read more about Active Record in +link:files/vendor/rails/activerecord/README.html. + +The controller and view are handled by the Action Pack, which handles both +layers by its two parts: Action View and Action Controller. These two layers +are bundled in a single package due to their heavy interdependence. This is +unlike the relationship between the Active Record and Action Pack that is much +more separate. Each of these packages can be used independently outside of +Rails. You can read more about Action Pack in +link:files/vendor/rails/actionpack/README.html. + + +== Getting Started + +1. At the command prompt, start a new Rails application using the rails command + and your application name. Ex: rails myapp +2. Change directory into myapp and start the web server: script/server (run with --help for options) +3. Go to http://localhost:3000/ and get "Welcome aboard: You're riding the Rails!" +4. Follow the guidelines to start developing your application + + +== Web Servers + +By default, Rails will try to use Mongrel if it's are installed when started with script/server, otherwise Rails will use WEBrick, the webserver that ships with Ruby. But you can also use Rails +with a variety of other web servers. + +Mongrel is a Ruby-based webserver with a C component (which requires compilation) that is +suitable for development and deployment of Rails applications. If you have Ruby Gems installed, +getting up and running with mongrel is as easy as: gem install mongrel. +More info at: http://mongrel.rubyforge.org + +Say other Ruby web servers like Thin and Ebb or regular web servers like Apache or LiteSpeed or +Lighttpd or IIS. The Ruby web servers are run through Rack and the latter can either be setup to use +FCGI or proxy to a pack of Mongrels/Thin/Ebb servers. + +== Apache .htaccess example for FCGI/CGI + +# General Apache options +AddHandler fastcgi-script .fcgi +AddHandler cgi-script .cgi +Options +FollowSymLinks +ExecCGI + +# If you don't want Rails to look in certain directories, +# use the following rewrite rules so that Apache won't rewrite certain requests +# +# Example: +# RewriteCond %{REQUEST_URI} ^/notrails.* +# RewriteRule .* - [L] + +# Redirect all requests not available on the filesystem to Rails +# By default the cgi dispatcher is used which is very slow +# +# For better performance replace the dispatcher with the fastcgi one +# +# Example: +# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L] +RewriteEngine On + +# If your Rails application is accessed via an Alias directive, +# then you MUST also set the RewriteBase in this htaccess file. +# +# Example: +# Alias /myrailsapp /path/to/myrailsapp/public +# RewriteBase /myrailsapp + +RewriteRule ^$ index.html [QSA] +RewriteRule ^([^.]+)$ $1.html [QSA] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule ^(.*)$ dispatch.cgi [QSA,L] + +# In case Rails experiences terminal errors +# Instead of displaying this message you can supply a file here which will be rendered instead +# +# Example: +# ErrorDocument 500 /500.html + +ErrorDocument 500 "

Application error

Rails application failed to start properly" + + +== Debugging Rails + +Sometimes your application goes wrong. Fortunately there are a lot of tools that +will help you debug it and get it back on the rails. + +First area to check is the application log files. Have "tail -f" commands running +on the server.log and development.log. Rails will automatically display debugging +and runtime information to these files. Debugging info will also be shown in the +browser on requests from 127.0.0.1. + +You can also log your own messages directly into the log file from your code using +the Ruby logger class from inside your controllers. Example: + + class WeblogController < ActionController::Base + def destroy + @weblog = Weblog.find(params[:id]) + @weblog.destroy + logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!") + end + end + +The result will be a message in your log file along the lines of: + + Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1 + +More information on how to use the logger is at http://www.ruby-doc.org/core/ + +Also, Ruby documentation can be found at http://www.ruby-lang.org/ including: + +* The Learning Ruby (Pickaxe) Book: http://www.ruby-doc.org/docs/ProgrammingRuby/ +* Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide) + +These two online (and free) books will bring you up to speed on the Ruby language +and also on programming in general. + + +== Debugger + +Debugger support is available through the debugger command when you start your Mongrel or +Webrick server with --debugger. This means that you can break out of execution at any point +in the code, investigate and change the model, AND then resume execution! +You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug' +Example: + + class WeblogController < ActionController::Base + def index + @posts = Post.find(:all) + debugger + end + end + +So the controller will accept the action, run the first line, then present you +with a IRB prompt in the server window. Here you can do things like: + + >> @posts.inspect + => "[#nil, \"body\"=>nil, \"id\"=>\"1\"}>, + #\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]" + >> @posts.first.title = "hello from a debugger" + => "hello from a debugger" + +...and even better is that you can examine how your runtime objects actually work: + + >> f = @posts.first + => #nil, "body"=>nil, "id"=>"1"}> + >> f. + Display all 152 possibilities? (y or n) + +Finally, when you're ready to resume execution, you enter "cont" + + +== Console + +You can interact with the domain model by starting the console through script/console. +Here you'll have all parts of the application configured, just like it is when the +application is running. You can inspect domain models, change values, and save to the +database. Starting the script without arguments will launch it in the development environment. +Passing an argument will specify a different environment, like script/console production. + +To reload your controllers and models after launching the console run reload! + +== dbconsole + +You can go to the command line of your database directly through script/dbconsole. +You would be connected to the database with the credentials defined in database.yml. +Starting the script without arguments will connect you to the development database. Passing an +argument will connect you to a different database, like script/dbconsole production. +Currently works for mysql, postgresql and sqlite. + +== Description of Contents + +app + Holds all the code that's specific to this particular application. + +app/controllers + Holds controllers that should be named like weblogs_controller.rb for + automated URL mapping. All controllers should descend from ApplicationController + which itself descends from ActionController::Base. + +app/models + Holds models that should be named like post.rb. + Most models will descend from ActiveRecord::Base. + +app/views + Holds the template files for the view that should be named like + weblogs/index.html.erb for the WeblogsController#index action. All views use eRuby + syntax. + +app/views/layouts + Holds the template files for layouts to be used with views. This models the common + header/footer method of wrapping views. In your views, define a layout using the + layout :default and create a file named default.html.erb. Inside default.html.erb, + call <% yield %> to render the view using this layout. + +app/helpers + Holds view helpers that should be named like weblogs_helper.rb. These are generated + for you automatically when using script/generate for controllers. Helpers can be used to + wrap functionality for your views into methods. + +config + Configuration files for the Rails environment, the routing map, the database, and other dependencies. + +db + Contains the database schema in schema.rb. db/migrate contains all + the sequence of Migrations for your schema. + +doc + This directory is where your application documentation will be stored when generated + using rake doc:app + +lib + Application specific libraries. Basically, any kind of custom code that doesn't + belong under controllers, models, or helpers. This directory is in the load path. + +public + The directory available for the web server. Contains subdirectories for images, stylesheets, + and javascripts. Also contains the dispatchers and the default HTML files. This should be + set as the DOCUMENT_ROOT of your web server. + +script + Helper scripts for automation and generation. + +test + Unit and functional tests along with fixtures. When using the script/generate scripts, template + test files will be generated for you and placed in this directory. + +vendor + External libraries that the application depends on. Also includes the plugins subdirectory. + If the app has frozen rails, those gems also go here, under vendor/rails/. + This directory is in the load path. diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..3bb0e85 --- /dev/null +++ b/Rakefile @@ -0,0 +1,10 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require(File.join(File.dirname(__FILE__), 'config', 'boot')) + +require 'rake' +require 'rake/testtask' +require 'rake/rdoctask' + +require 'tasks/rails' diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 0000000..4f2f535 --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,17 @@ +# Filters added to this controller apply to all controllers in the application. +# Likewise, all the methods added will be available for all controllers. + +class ApplicationController < ActionController::Base + helper :all # include all helpers, all the time + protect_from_forgery # See ActionController::RequestForgeryProtection for details + + rescue_from ActiveRecord::RecordNotFound, :with => :record_not_found + + def record_not_found + render :file => "#{RAILS_ROOT}/public/404.html", + :status => '404 Not Found' + end + + # Scrub sensitive parameters from your log + # filter_parameter_logging :password +end diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb new file mode 100644 index 0000000..fd22eb2 --- /dev/null +++ b/app/controllers/registrations_controller.rb @@ -0,0 +1,19 @@ +class RegistrationsController < ApplicationController + + def new + @day_of_action = DayOfAction.find(params[:days_of_action_id]) + @registration = flash[:registration] + Time.zone = @day_of_action.time_zone + end + + def create + registration = Registration.new(params[:registration]) + if registration.valid? + time_slot = TimeSlot.find(params[:registration][:time_slot_id]) + time_slot.registration = registration + flash[:thanks_for_registering] = "true" + end + flash[:registration] = registration + redirect_to :action => :new + end +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 0000000..22a7940 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,3 @@ +# Methods added to this helper will be available to all templates in the application. +module ApplicationHelper +end diff --git a/app/helpers/days_of_action_helper.rb b/app/helpers/days_of_action_helper.rb new file mode 100644 index 0000000..50f3752 --- /dev/null +++ b/app/helpers/days_of_action_helper.rb @@ -0,0 +1,2 @@ +module DaysOfActionHelper +end diff --git a/app/models/business_hours_scheduler.rb b/app/models/business_hours_scheduler.rb new file mode 100644 index 0000000..1656fb6 --- /dev/null +++ b/app/models/business_hours_scheduler.rb @@ -0,0 +1,18 @@ +class BusinessHoursScheduler + + def each_time_slot_in(date, timezone) + # 1) find midnight on the date in UTC + # 2) convert it to a time in the required timezone + # 3) find previous midnight in that timezone + midnight_in_timezone = date.to_time(:utc).in_time_zone(timezone).midnight + + start_time = midnight_in_timezone + 9.hours + end_time = midnight_in_timezone + 17.hours + time = start_time + while time < end_time do + yield time + time = 5.minutes.since(time) + end + end + +end diff --git a/app/models/day_of_action.rb b/app/models/day_of_action.rb new file mode 100644 index 0000000..5dc172f --- /dev/null +++ b/app/models/day_of_action.rb @@ -0,0 +1,13 @@ +class DayOfAction < ActiveRecord::Base + attr_writer :scheduler + has_many :time_slots + + def before_create + raise "You must provide a scheduler to create a Day of Action" unless @scheduler + raise "You must provide a date to create a Day of Action" unless date + raise "You must provide a time zone to create a Day of Action" unless time_zone + @scheduler.each_time_slot_in(date, time_zone) do |time| + time_slots << TimeSlot.create!(:start_time => time) + end + end +end diff --git a/app/models/registration.rb b/app/models/registration.rb new file mode 100644 index 0000000..d92275e --- /dev/null +++ b/app/models/registration.rb @@ -0,0 +1,4 @@ +class Registration < ActiveRecord::Base + validates_presence_of :time_slot_id, :message => " - please choose a time" + validates_presence_of :email_address, :message => " - please tell us your email address" +end diff --git a/app/models/time_slot.rb b/app/models/time_slot.rb new file mode 100644 index 0000000..76d0d23 --- /dev/null +++ b/app/models/time_slot.rb @@ -0,0 +1,8 @@ +class TimeSlot < ActiveRecord::Base + has_one :registration + + def status + registration ? "taken" : "free" + end + +end diff --git a/app/stylesheets/ie.sass b/app/stylesheets/ie.sass new file mode 100644 index 0000000..fad0915 --- /dev/null +++ b/app/stylesheets/ie.sass @@ -0,0 +1,15 @@ +@import blueprint.sass + ++blueprint-ie + +// Note : +// +// Compass will center text to fix IE6 container centering. +// This means all your texts will be centered under all version of IE by default. +// Please don't forget to restore the correct behavior to your main container (but not the body tag!) +// +// Example : +// +// .container, .footer +// :text-align left + diff --git a/app/stylesheets/partials/_base.sass b/app/stylesheets/partials/_base.sass new file mode 100644 index 0000000..b9fc72e --- /dev/null +++ b/app/stylesheets/partials/_base.sass @@ -0,0 +1,11 @@ +// Here is where you can define your constants for your application and to configure the blueprint framework. +// Feel free to delete these if you want keep the defaults: + +!blueprint_grid_columns = 24 +!blueprint_container_size = 960px +!blueprint_grid_margin = 10px + +// Use this to calculate the width based on the total width. +// Or you can set !blueprint_grid_width to a fixed value and unset !blueprint_container_size -- it will be calculated for you. +!blueprint_grid_width = (!blueprint_container_size + !blueprint_grid_margin) / !blueprint_grid_columns - !blueprint_grid_margin + diff --git a/app/stylesheets/print.sass b/app/stylesheets/print.sass new file mode 100644 index 0000000..8e5d49d --- /dev/null +++ b/app/stylesheets/print.sass @@ -0,0 +1,3 @@ +@import blueprint.sass + ++blueprint-print \ No newline at end of file diff --git a/app/stylesheets/screen.sass b/app/stylesheets/screen.sass new file mode 100644 index 0000000..81205c1 --- /dev/null +++ b/app/stylesheets/screen.sass @@ -0,0 +1,49 @@ +// This import applies a global reset to any page that imports this stylesheet. +@import blueprint/reset.sass +// To configure blueprint, edit the partials/base.sass file. +@import partials/base.sass +// Import all the default blueprint modules so that we can access their mixins. +@import blueprint +// Import the non-default scaffolding module. +@import blueprint/modules/scaffolding.sass +//@import compass/utilities/tables.sass +//+table-scaffolding + +// To generate css equivalent to the blueprint css but with your configuration applied, uncomment: +// +blueprint +@import blueprint/modules/form.sass ++blueprint-form +//Recommended Blueprint configuration with scoping and semantic layout: ++blueprint-typography("body.bp") ++blueprint-scaffolding("body.bp") +body.bp + +blueprint-utilities + +blueprint-debug + +blueprint-interaction + // Remove the scaffolding when you're ready to start doing visual design. + // Or leave it in if you're happy with how blueprint looks out-of-the-box +form.bp + +blueprint-form + +// Page layout can be done using mixins applied to your semantic classes and IDs: +body.three-col + #container + +container + #header, #footer + +column(!blueprint_grid_columns) + #sidebar + // One third of the grid columns, rounding down. With 24 cols, this is 8. + !sidebar_columns = floor(!blueprint_grid_columns / 3) + +column(!sidebar_columns) + #content + // Two thirds of the grid columns, rounding up. + // With 24 cols, this is 16. + !content_columns = ceil(2 * !blueprint_grid_columns / 3) + // true means it's the last column in the row + +column(!content_columns, true) + +.free + background-color: blue + +.taken + background-color: green diff --git a/app/views/registrations/new.html.haml b/app/views/registrations/new.html.haml new file mode 100644 index 0000000..9e86810 --- /dev/null +++ b/app/views/registrations/new.html.haml @@ -0,0 +1,30 @@ +!!! +%html + %head + = stylesheet_link_tag "compiled/screen" + = stylesheet_link_tag "compiled/roster" + + %body.bp.three-col + #container + #content + - form_for :registration, @registration, :url => { :action => "create" } do |f| + Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} + %table.roster + - @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots| + %tr.hour + %th= hour + - slots.each do |slot| + %td{:class=> slot.status} + = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") + = f.radio_button :time_slot_id, slot.id + + = f.label :email_address, "What is your email address?", :class => :title + = f.text_field :email_address, {:class => :title} + = f.submit 'Register' + = f.error_messages :message => "Whoops, can we try that again?", :header_message => nil + - if flash[:thanks_for_registering] + .notice.thanks_for_registering + Thanks for helping out! + We have sent you a confirmation email with further instructions. + + \ No newline at end of file diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 0000000..dd5e3b6 --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,110 @@ +# Don't change this file! +# Configure your app in config/environment.rb and config/environments/*.rb + +RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT) + +module Rails + class << self + def boot! + unless booted? + preinitialize + pick_boot.run + end + end + + def booted? + defined? Rails::Initializer + end + + def pick_boot + (vendor_rails? ? VendorBoot : GemBoot).new + end + + def vendor_rails? + File.exist?("#{RAILS_ROOT}/vendor/rails") + end + + def preinitialize + load(preinitializer_path) if File.exist?(preinitializer_path) + end + + def preinitializer_path + "#{RAILS_ROOT}/config/preinitializer.rb" + end + end + + class Boot + def run + load_initializer + Rails::Initializer.run(:set_load_path) + end + end + + class VendorBoot < Boot + def load_initializer + require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer" + Rails::Initializer.run(:install_gem_spec_stubs) + Rails::GemDependency.add_frozen_gem_path + end + end + + class GemBoot < Boot + def load_initializer + self.class.load_rubygems + load_rails_gem + require 'initializer' + end + + def load_rails_gem + if version = self.class.gem_version + gem 'rails', version + else + gem 'rails' + end + rescue Gem::LoadError => load_error + $stderr.puts %(Missing the Rails #{version} gem. Please `gem install -v=#{version} rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed.) + exit 1 + end + + class << self + def rubygems_version + Gem::RubyGemsVersion rescue nil + end + + def gem_version + if defined? RAILS_GEM_VERSION + RAILS_GEM_VERSION + elsif ENV.include?('RAILS_GEM_VERSION') + ENV['RAILS_GEM_VERSION'] + else + parse_gem_version(read_environment_rb) + end + end + + def load_rubygems + min_version = '1.3.2' + require 'rubygems' + unless rubygems_version >= min_version + $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.) + exit 1 + end + + rescue LoadError + $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org) + exit 1 + end + + def parse_gem_version(text) + $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/ + end + + private + def read_environment_rb + File.read("#{RAILS_ROOT}/config/environment.rb") + end + end + end +end + +# All that for this: +Rails.boot! diff --git a/config/compass.config b/config/compass.config new file mode 100644 index 0000000..ace247a --- /dev/null +++ b/config/compass.config @@ -0,0 +1,14 @@ +# Require any additional compass plugins here. +project_type = :rails +project_path = RAILS_ROOT if defined?(RAILS_ROOT) +# Set this to the root of your project when deployed: +http_path = "/" +css_dir = "public/stylesheets/compiled" +sass_dir = "app/stylesheets" +images_dir = "public/images" +javascripts_dir = "public/javascripts" +# To enable relative paths to assets via compass helper functions. Uncomment: +# relative_assets = true +http_images_path = "/images" +http_stylesheets_path = "/stylesheets" +http_javascripts_path = "/javascripts" diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 0000000..4fd78e6 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3-ruby (not necessary on OS X Leopard) +development: + adapter: sqlite3 + database: db/development.sqlite3 + pool: 5 + timeout: 5000 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: &TEST + adapter: sqlite3 + database: db/test.sqlite3 + pool: 5 + timeout: 5000 + +production: + adapter: sqlite3 + database: db/production.sqlite3 + pool: 5 + timeout: 5000 + +cucumber: + <<: *TEST \ No newline at end of file diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 0000000..40b5426 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,48 @@ +# Be sure to restart your server when you modify this file + +# Specifies gem version of Rails to use when vendor/rails is not present +RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION + +# Bootstrap the Rails environment, frameworks, and default configuration +require File.join(File.dirname(__FILE__), 'boot') + +Rails::Initializer.run do |config| + config.gem 'chriseppstein-compass', :lib => 'compass', :source => 'http://gems.github.com/' + config.gem 'haml', :lib => 'haml', :version => '>=2.2.0' + config.gem 'chriseppstein-compass', :lib => 'compass', :source => 'http://gems.github.com/' + config.gem 'haml', :lib => 'haml', :version => '>=2.2.0' + config.gem 'chriseppstein-compass', :lib => 'compass', :source => 'http://gems.github.com/' + config.gem 'haml', :lib => 'haml', :version => '>=2.2.0' + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Add additional load paths for your own custom dirs + # config.load_paths += %W( #{RAILS_ROOT}/extras ) + + # Specify gems that this application depends on and have them installed with rake gems:install + # config.gem "bj" + # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" + # config.gem "sqlite3-ruby", :lib => "sqlite3" + # config.gem "aws-s3", :lib => "aws/s3" + config.gem "haml", :version => '2.2.16' + + # Only load the plugins named here, in the order given (default is alphabetical). + # :all can be used as a placeholder for all plugins not explicitly named + # config.plugins = [ :exception_notification, :ssl_requirement, :all ] + + # Skip frameworks you're not going to use. To use Rails without a database, + # you must remove the Active Record framework. + # config.frameworks -= [ :active_record, :active_resource, :action_mailer ] + + # Activate observers that should always be running + # config.active_record.observers = :cacher, :garbage_collector, :forum_observer + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. + config.time_zone = 'UTC' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')] + # config.i18n.default_locale = :de +end \ No newline at end of file diff --git a/config/environments/cucumber.rb b/config/environments/cucumber.rb new file mode 100644 index 0000000..7503f62 --- /dev/null +++ b/config/environments/cucumber.rb @@ -0,0 +1,26 @@ +# IMPORTANT: This file was generated by Cucumber 0.4.4 +# Edit at your own peril - it's recommended to regenerate this file +# in the future when you upgrade to a newer version of Cucumber. + +config.cache_classes = true # This must be true for Cucumber to operate correctly! + +# Log error messages when you accidentally call methods on nil. +config.whiny_nils = true + +# Show full error reports and disable caching +config.action_controller.consider_all_requests_local = true +config.action_controller.perform_caching = false + +# Disable request forgery protection in test environment +config.action_controller.allow_forgery_protection = false + +# Tell Action Mailer not to deliver emails to the real world. +# The :test delivery method accumulates sent emails in the +# ActionMailer::Base.deliveries array. +config.action_mailer.delivery_method = :test + +config.gem 'cucumber', :lib => false, :version => '>=0.4.4' unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber')) +config.gem 'webrat', :lib => false, :version => '>=0.5.3' unless File.directory?(File.join(Rails.root, 'vendor/plugins/webrat')) +config.gem 'rspec', :lib => false, :version => '>=1.2.9' unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec')) +config.gem 'rspec-rails', :lib => false, :version => '>=1.2.9' unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec-rails')) + diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 0000000..85c9a60 --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,17 @@ +# Settings specified here will take precedence over those in config/environment.rb + +# In the development environment your application's code is reloaded on +# every request. This slows down response time but is perfect for development +# since you don't have to restart the webserver when you make code changes. +config.cache_classes = false + +# Log error messages when you accidentally call methods on nil. +config.whiny_nils = true + +# Show full error reports and disable caching +config.action_controller.consider_all_requests_local = true +config.action_view.debug_rjs = true +config.action_controller.perform_caching = false + +# Don't care if the mailer can't send +config.action_mailer.raise_delivery_errors = false \ No newline at end of file diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 0000000..27119d2 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,28 @@ +# Settings specified here will take precedence over those in config/environment.rb + +# The production environment is meant for finished, "live" apps. +# Code is not reloaded between requests +config.cache_classes = true + +# Full error reports are disabled and caching is turned on +config.action_controller.consider_all_requests_local = false +config.action_controller.perform_caching = true +config.action_view.cache_template_loading = true + +# See everything in the log (default is :info) +# config.log_level = :debug + +# Use a different logger for distributed setups +# config.logger = SyslogLogger.new + +# Use a different cache store in production +# config.cache_store = :mem_cache_store + +# Enable serving of images, stylesheets, and javascripts from an asset server +# config.action_controller.asset_host = "http://assets.example.com" + +# Disable delivery errors, bad email addresses will be ignored +# config.action_mailer.raise_delivery_errors = false + +# Enable threaded mode +# config.threadsafe! \ No newline at end of file diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 0000000..d6f80a4 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,28 @@ +# Settings specified here will take precedence over those in config/environment.rb + +# The test environment is used exclusively to run your application's +# test suite. You never need to work with it otherwise. Remember that +# your test database is "scratch space" for the test suite and is wiped +# and recreated between test runs. Don't rely on the data there! +config.cache_classes = true + +# Log error messages when you accidentally call methods on nil. +config.whiny_nils = true + +# Show full error reports and disable caching +config.action_controller.consider_all_requests_local = true +config.action_controller.perform_caching = false +config.action_view.cache_template_loading = true + +# Disable request forgery protection in test environment +config.action_controller.allow_forgery_protection = false + +# Tell Action Mailer not to deliver emails to the real world. +# The :test delivery method accumulates sent emails in the +# ActionMailer::Base.deliveries array. +config.action_mailer.delivery_method = :test + +# Use SQL instead of Active Record's schema dumper when creating the test database. +# This is necessary if your schema can't be completely dumped by the schema dumper, +# like if you have constraints or database-specific column types +# config.active_record.schema_format = :sql \ No newline at end of file diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 0000000..c2169ed --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying do debug a problem that might steem from framework code. +# Rails.backtrace_cleaner.remove_silencers! \ No newline at end of file diff --git a/config/initializers/compass.rb b/config/initializers/compass.rb new file mode 100644 index 0000000..9862fac --- /dev/null +++ b/config/initializers/compass.rb @@ -0,0 +1,5 @@ +require 'compass' +# If you have any compass plugins, require them here. +Compass.configuration.parse(File.join(RAILS_ROOT, "config", "compass.config")) +Compass.configuration.environment = RAILS_ENV.to_sym +Compass.configure_sass_plugin! diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 0000000..d531b8b --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,10 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format +# (all these examples are active by default): +# ActiveSupport::Inflector.inflections do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 0000000..72aca7e --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,5 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf +# Mime::Type.register_alias "text/html", :iphone diff --git a/config/initializers/new_rails_defaults.rb b/config/initializers/new_rails_defaults.rb new file mode 100644 index 0000000..c94db0a --- /dev/null +++ b/config/initializers/new_rails_defaults.rb @@ -0,0 +1,21 @@ +# Be sure to restart your server when you modify this file. + +# These settings change the behavior of Rails 2 apps and will be defaults +# for Rails 3. You can remove this initializer when Rails 3 is released. + +if defined?(ActiveRecord) + # Include Active Record class name as root for JSON serialized output. + ActiveRecord::Base.include_root_in_json = true + + # Store the full class name (including module namespace) in STI type column. + ActiveRecord::Base.store_full_sti_class = true +end + +ActionController::Routing.generate_best_match = false + +# Use ISO 8601 format for JSON serialized times and dates. +ActiveSupport.use_standard_json_time_format = true + +# Don't escape HTML entities in JSON, leave that for the #json_escape helper. +# if you're including raw json in an HTML page. +ActiveSupport.escape_html_entities_in_json = false \ No newline at end of file diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 0000000..1b5793c --- /dev/null +++ b/config/initializers/session_store.rb @@ -0,0 +1,15 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key for verifying cookie session data integrity. +# If you change this key, all old sessions will become invalid! +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +ActionController::Base.session = { + :key => '_phoneflood_session', + :secret => '195d1df3cb24792f22bc1ce4beda611932983f28bc945079a8fd568ef566878e2ec1a9bc5043f87d81ed083e96afb6483a00919e5e458cadd08f04181a75ccb2' +} + +# Use the database for sessions instead of the cookie-based default, +# which shouldn't be used to store highly confidential information +# (create the session table with "rake db:sessions:create") +# ActionController::Base.session_store = :active_record_store diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..f265c06 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,5 @@ +# Sample localization file for English. Add more files in this directory for other locales. +# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. + +en: + hello: "Hello world" \ No newline at end of file diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..ffd49d7 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,46 @@ +ActionController::Routing::Routes.draw do |map| + # The priority is based upon order of creation: first created -> highest priority. + + # Sample of regular route: + # map.connect 'products/:id', :controller => 'catalog', :action => 'view' + # Keep in mind you can assign values other than :controller and :action + + # Sample of named route: + # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase' + # This route can be invoked with purchase_url(:id => product.id) + + # Sample resource route (maps HTTP verbs to controller actions automatically): + # map.resources :products + map.resources :days_of_action do |day_of_action| + day_of_action.resources :registrations + end + + # Sample resource route with options: + # map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get } + + # Sample resource route with sub-resources: + # map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller + + # Sample resource route with more complex sub-resources + # map.resources :products do |products| + # products.resources :comments + # products.resources :sales, :collection => { :recent => :get } + # end + + # Sample resource route within a namespace: + # map.namespace :admin do |admin| + # # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb) + # admin.resources :products + # end + + # You can have the root of your site routed with map.root -- just remember to delete public/index.html. + # map.root :controller => "welcome" + + # See how all your routes lay out with "rake routes" + + # Install the default routes as the lowest priority. + # Note: These default routes make all actions in every controller accessible via GET requests. You should + # consider removing or commenting them out if you're using named routes and resources. + map.connect ':controller/:action/:id' + map.connect ':controller/:action/:id.:format' +end diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..2f8e10614ebe0fe3c0a74cda2d4c58f17e22e79b GIT binary patch literal 17408 zcmeI3-*XdH6vyxGZ4-XAv;_<*$~HyYP)hb!lFbUp0s$*+T1tY{UtwuBG-I3CBrwWb zdG;Sr-yE6o)jz-&A9Qe>@x>>H@xd2)P)BDRUwHBCCZ*ZrlzMbJL!I3To8;`C&wlTB zb5Ab!rk5{Gl^c#!s@9h6hNQ6`CJ5}bBr(RK@UMOAg*QT5p#61QxcjA>2w->H;q8N6 z;6UKO6X8G~sNnn?#((4Y;VIYx2LcDSr2_+8jH$AmR#Z)qRXr)|1L9glP0N~W=&1qW zQN)l{MbWff&{odBX8c$F13U#=;6UKO_H$r}#{_@p=j)-h-Y>R=THRl8zyAgPC4)z> z1r7ubY&!=|2q88S(Xw4Q!30D!MUpjBPMNxbgqq|3dyM}M_)j-sqY^WVN_7G-!D{41$)7Z3H<^e78>Pcr%+$2 zHtN^hxw#Pk$tCRN5BXpG5B>}PxfyVS!4^0WIIztf=+8j|`p&~{j{&>gM`5??5bSpL zdz1S7A-skP;yt-9gDr3%aNz&%z`&3@{tvMPgU4rrDvDx`AKA3sD?&IDj|;1V4g30% zQ(stgmhHlF`9^Et(G?KS&Sk7zM#@=drZQ5r>v&Wei{5f-br`iorCWAwVbQLQsfk2P z%Fg7ZY<_Agwi*`0k&|%Ec)3z^-n&^TuiS(&%%+#-txM;#lb7-tX)=2*b5)9Nlpd94 zvYY6OtxofBBo-6y(hp>0)MHvhul^ z$t+|~XR=^G%Y+DU9CW*-849|P;=mvV!>`SPj=6Q@XdGKOn*2w z+Y^e6j|=n7d%3a%%fW@Z1MXH9oVx#Qudh8F2gfQlTm&+~q26$0cv!gOc+BzBvg=R!vngwWK#sx%tF|)rTUKBmuDpM^IGkMiDYa#V#B{QLz(2C}x79 zVh4_(s0gD7ouVRyBPc3*QG`ZO(Ssu>DmaQzDJn!9K~Vuye_h>7F)4jyi~9c|M3`o3 zl(s#KB1jHDgCi&^o<Qwy6IfMTF_F0zvrlj-d#W!(%vtqGA+9P#m^i#1Rw~FQ5og z6*__=C@Mx!1gQ!|aRf!hFoMu%RY<}S6cvY21gQ!=k0U55oi_2vVJTClv@L@mk~D|U;RuR~vnYb%uyqDUP*hkbf>ec0;|Pk1 zmr(?%3Z23c6cr~?1gQ$0z!4M`FQEuh6*6%IMMWAxz}GBc7GjI~e-065mZQE>@Dq(}~1vp9mHVg^N!s!$e3P*hB#2vQZA!Vwe|7f}SM3cZRWC@LmV1gQ$W zf+Hv@E}#fXAL(Nc*dBJ5vAY|r0FdYYw;;jFBkhE8La1|~DwSXzD-!8uMM8cSxfZgn zAy;mt{nLev0*avABg&+)CA$t=?P*l8uB1nbobsRxaF^?ihh3qPhps08a zMUV>F6&yiO;eP)Qu~R+#EB*nW;|Ikb#ZSd|L__Qqz7;+a7KNnH%f4ryuoZTyyJssf zlX?Kw`HH1dDYe#T+#ejne}!PWFM)*OFmt*OI%26>^&i#KrrMDJAx)KGo^&5v0}^~a zPKVRYMA{GWLUEWDMK7U(rVg2qASdInT)ANaC|Lg?HC)tX$gnus(vrAhb@X>>S|YpuBKq6ainSO>Fajw_(FBL<1F|Qc&9kSRFg8S zFCKuzda+dO%Fv9ikggjttS4@q(s_}Tsli{L!TRCjq?rbcUlOS zlw|`J3rCutoi#^#+FPT!w^Q{suoW_3jj$tA?8t 20091231024604) do + + create_table "day_of_actions", :force => true do |t| + t.date "date" + t.string "time_zone" + t.datetime "created_at" + t.datetime "updated_at" + end + + create_table "registrations", :force => true do |t| + t.string "email_address" + t.integer "time_slot_id" + t.datetime "created_at" + t.datetime "updated_at" + end + + create_table "time_slots", :force => true do |t| + t.datetime "start_time" + t.integer "day_of_action_id" + t.datetime "created_at" + t.datetime "updated_at" + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 0000000..3174d0c --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). +# +# Examples: +# +# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }]) +# Major.create(:name => 'Daley', :city => cities.first) diff --git a/db/test.sqlite3 b/db/test.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..0b2087ff44724ded5dba924074b0a4b6e28a2dca GIT binary patch literal 8192 zcmeI1L66cv6vsOqpvJ@mz4SWU%hId~r3KwRn26dKB9vW(D5qwmvuqP6(hfwu!I#^_ zk6`=?`Wc)S7CJP>xE`8~GfB(L|INHN?>F<(18*q6z|nKyCy?{pW^W1QrBx zCm`xS_ahJ+5Cn1~AnHFi^dhhzkUN36{vrG-!JqIu`w>kL5CrZdfijeJ(=g6zrg>&q z#%cX&S>7q9hFPmwRvFwVR?RT$PmKC~mMetU68r|Q;g36+xY)EH@V^sy1a-g{KTJv6 z>X-M@P5FcP`(Kh8lGFf2@J_ZMgv&p|Ty=n=>N;2tDE=@Z9{%jkE?qpL{w#?2k^Hh} zH~Ti~H(#`Er13@#RW#qzP|NAtuk9W>@3lJ3-VnX9hp0K|cUuly-LaiMa=PppwA+tk z7nEoyezO7fr^Nj-3z)LR;phs76|>RMnPn6bHpO!>-As;WGI{YaUdhY)xm;3DPQWn9 zCYn#!Kca3#<_i*x$iWbD`5YK40cJtiN_{niih6tu*7L+?NXC9dL!1EO1_jQa#@TL# zhfJ|Qak1xxB#JUr5?;|{M%|dZA5bzT;a}2Pbqb1lbOhEU$!+H{+V_flR(r#(Qi>=J zsT(`tj*`1e|B%nTsHoK{SUubv|LBS#bf^A!dtA|>P~wxz*y9|RB#c-w@cehTSYIh6 yMSaF%R{g*upB917E}NV2lo6C|=z-I^7}%_CUfJ*2o&L>o4Rsx)Wt^n email) + click_button "Register" +end + +Then /^I will be thanked and asked to look for an email$/ do + response.should have_tag(".thanks_for_registering") +end + +Then /^I will be reminded to enter an email address$/ do + response.should contain("please tell us your email address") +end + +Then /^I will be reminded to choose a time$/ do + response.should contain("please choose a time") +end + +Then /^the "([^\"]*)" timeslot will still be selected$/ do |time| + field_labeled(time).should be_checked +end diff --git a/features/step_definitions/view_roster_steps.rb b/features/step_definitions/view_roster_steps.rb new file mode 100644 index 0000000..6199e2a --- /dev/null +++ b/features/step_definitions/view_roster_steps.rb @@ -0,0 +1,63 @@ +Given /^a Day of Action has been set up for "([^\"]*)" in "([^\"]*)"$/ do |date, time_zone| + @day_of_action = DayOfAction.create!(:scheduler => BusinessHoursScheduler.new, :date => Date.parse(date), :time_zone => time_zone) +end + +When /^I view the roster for the day of action$/ do + visit new_days_of_action_registration_path @day_of_action +end + +When /^I view the roster for the day of action that does not exist$/ do + visit new_days_of_action_registration_path -1 +end + +Then /^I will see a 404$/ do + response.code.should == "404" +end + + +Then /^I will see a section for each hour between 9 am and 5 pm$/ do + expected_hours = ["09 AM", "10 AM", "11 AM", "12 PM", "01 PM", "02 PM", "03 PM", "04 PM"] + actual_hours = element_at(".roster").to_table.collect { |row| row.first} + actual_hours.should eql expected_hours +end + +Then /^each section will be divided into 5 minute slots$/ do + # just check the first row is probably enough at this level + expected_times = ["09:00", "09:05", "09:10", "09:15","09:20", "09:25","09:30", "09:35","09:40", "09:45","09:50", "09:55"] + html_table_row = element_at(".roster").to_table.first + #remove header + html_table_row.delete_at(0) + actual_times = html_table_row.map{|text| text.match(/\d\d:\d\d/)[0]} + actual_times.should eql expected_times +end + +Then /^each slot will be free$/ do + number_of_free_slots = 0 + number_of_slots = 0 + + response.should have_tag(".roster .hour td.free") do |free_slots| + number_of_free_slots = free_slots.size + end + + response.should have_tag(".roster .hour td") do |all_slots| + number_of_slots = all_slots.size + end + + number_of_free_slots.should eql number_of_slots +end + +Then /^the "([^\"]*)" timeslot will now be shown as taken$/ do |time| + response.should have_tag(".taken") do + with_tag "label", time + end +end + +Then /^the "([^\"]*)" timeslot will still be shown as free$/ do |time| + response.should have_tag(".free") do + with_tag "label", time + end +end + +Then /^I will be reminded that the times are in "([^\"]*)"$/ do |time_string| + response.should have_tag(".time_zone_reminder", time_string) +end diff --git a/features/step_definitions/webrat_steps.rb b/features/step_definitions/webrat_steps.rb new file mode 100644 index 0000000..8740133 --- /dev/null +++ b/features/step_definitions/webrat_steps.rb @@ -0,0 +1,189 @@ +# IMPORTANT: This file was generated by Cucumber 0.4.4 +# Edit at your own peril - it's recommended to regenerate this file +# in the future when you upgrade to a newer version of Cucumber. +# Consider adding your own code to a new file instead of editing this one. + +require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths")) + +# Commonly used webrat steps +# http://github.com/brynary/webrat + +Given /^(?:|I )am on (.+)$/ do |page_name| + visit path_to(page_name) +end + +When /^(?:|I )go to (.+)$/ do |page_name| + visit path_to(page_name) +end + +When /^(?:|I )press "([^\"]*)"$/ do |button| + click_button(button) +end + +When /^(?:|I )follow "([^\"]*)"$/ do |link| + click_link(link) +end + +When /^(?:|I )follow "([^\"]*)" within "([^\"]*)"$/ do |link, parent| + click_link_within(parent, link) +end + +When /^(?:|I )fill in "([^\"]*)" with "([^\"]*)"$/ do |field, value| + fill_in(field, :with => value) +end + +When /^(?:|I )fill in "([^\"]*)" for "([^\"]*)"$/ do |value, field| + fill_in(field, :with => value) +end + +# Use this to fill in an entire form with data from a table. Example: +# +# When I fill in the following: +# | Account Number | 5002 | +# | Expiry date | 2009-11-01 | +# | Note | Nice guy | +# | Wants Email? | | +# +# TODO: Add support for checkbox, select og option +# based on naming conventions. +# +When /^(?:|I )fill in the following:$/ do |fields| + fields.rows_hash.each do |name, value| + When %{I fill in "#{name}" with "#{value}"} + end +end + +When /^(?:|I )select "([^\"]*)" from "([^\"]*)"$/ do |value, field| + select(value, :from => field) +end + +# Use this step in conjunction with Rail's datetime_select helper. For example: +# When I select "December 25, 2008 10:00" as the date and time +When /^(?:|I )select "([^\"]*)" as the date and time$/ do |time| + select_datetime(time) +end + +# Use this step when using multiple datetime_select helpers on a page or +# you want to specify which datetime to select. Given the following view: +# <%= f.label :preferred %>
+# <%= f.datetime_select :preferred %> +# <%= f.label :alternative %>
+# <%= f.datetime_select :alternative %> +# The following steps would fill out the form: +# When I select "November 23, 2004 11:20" as the "Preferred" date and time +# And I select "November 25, 2004 10:30" as the "Alternative" date and time +When /^(?:|I )select "([^\"]*)" as the "([^\"]*)" date and time$/ do |datetime, datetime_label| + select_datetime(datetime, :from => datetime_label) +end + +# Use this step in conjunction with Rail's time_select helper. For example: +# When I select "2:20PM" as the time +# Note: Rail's default time helper provides 24-hour time-- not 12 hour time. Webrat +# will convert the 2:20PM to 14:20 and then select it. +When /^(?:|I )select "([^\"]*)" as the time$/ do |time| + select_time(time) +end + +# Use this step when using multiple time_select helpers on a page or you want to +# specify the name of the time on the form. For example: +# When I select "7:30AM" as the "Gym" time +When /^(?:|I )select "([^\"]*)" as the "([^\"]*)" time$/ do |time, time_label| + select_time(time, :from => time_label) +end + +# Use this step in conjunction with Rail's date_select helper. For example: +# When I select "February 20, 1981" as the date +When /^(?:|I )select "([^\"]*)" as the date$/ do |date| + select_date(date) +end + +# Use this step when using multiple date_select helpers on one page or +# you want to specify the name of the date on the form. For example: +# When I select "April 26, 1982" as the "Date of Birth" date +When /^(?:|I )select "([^\"]*)" as the "([^\"]*)" date$/ do |date, date_label| + select_date(date, :from => date_label) +end + +When /^(?:|I )check "([^\"]*)"$/ do |field| + check(field) +end + +When /^(?:|I )uncheck "([^\"]*)"$/ do |field| + uncheck(field) +end + +When /^(?:|I )choose "([^\"]*)"$/ do |field| + choose(field) +end + +When /^(?:|I )attach the file at "([^\"]*)" to "([^\"]*)"$/ do |path, field| + attach_file(field, path) +end + +Then /^(?:|I )should see "([^\"]*)"$/ do |text| + response.should contain(text) +end + +Then /^(?:|I )should see "([^\"]*)" within "([^\"]*)"$/ do |text, selector| + within(selector) do |content| + content.should contain(text) + end +end + +Then /^(?:|I )should see \/([^\/]*)\/$/ do |regexp| + regexp = Regexp.new(regexp) + response.should contain(regexp) +end + +Then /^(?:|I )should see \/([^\/]*)\/ within "([^\"]*)"$/ do |regexp, selector| + within(selector) do |content| + regexp = Regexp.new(regexp) + content.should contain(regexp) + end +end + +Then /^(?:|I )should not see "([^\"]*)"$/ do |text| + response.should_not contain(text) +end + +Then /^(?:|I )should not see "([^\"]*)" within "([^\"]*)"$/ do |text, selector| + within(selector) do |content| + content.should_not contain(text) + end +end + +Then /^(?:|I )should not see \/([^\/]*)\/$/ do |regexp| + regexp = Regexp.new(regexp) + response.should_not contain(regexp) +end + +Then /^(?:|I )should not see \/([^\/]*)\/ within "([^\"]*)"$/ do |regexp, selector| + within(selector) do |content| + regexp = Regexp.new(regexp) + content.should_not contain(regexp) + end +end + +Then /^the "([^\"]*)" field should contain "([^\"]*)"$/ do |field, value| + field_labeled(field).value.should =~ /#{value}/ +end + +Then /^the "([^\"]*)" field should not contain "([^\"]*)"$/ do |field, value| + field_labeled(field).value.should_not =~ /#{value}/ +end + +Then /^the "([^\"]*)" checkbox should be checked$/ do |label| + field_labeled(label).should be_checked +end + +Then /^the "([^\"]*)" checkbox should not be checked$/ do |label| + field_labeled(label).should_not be_checked +end + +Then /^(?:|I )should be on (.+)$/ do |page_name| + URI.parse(current_url).path.should == path_to(page_name) +end + +Then /^show me the page$/ do + save_and_open_page +end \ No newline at end of file diff --git a/features/support/env.rb b/features/support/env.rb new file mode 100644 index 0000000..437f27a --- /dev/null +++ b/features/support/env.rb @@ -0,0 +1,47 @@ +# IMPORTANT: This file was generated by Cucumber 0.4.4 +# Edit at your own peril - it's recommended to regenerate this file +# in the future when you upgrade to a newer version of Cucumber. +# Consider adding your own code to a new file instead of editing this one. + +# Sets up the Rails environment for Cucumber +ENV["RAILS_ENV"] ||= "cucumber" +require File.expand_path(File.dirname(__FILE__) + '/../../config/environment') +require 'cucumber/rails/world' + +# If you set this to true, each scenario will run in a database transaction. +# You can still turn off transactions on a per-scenario basis, simply tagging +# a feature or scenario with the @no-txn tag. +# +# If you set this to false, transactions will be off for all scenarios, +# regardless of whether you use @no-txn or not. +# +# Beware that turning transactions off will leave data in your database +# after each scenario, which can lead to hard-to-debug failures in +# subsequent scenarios. If you do this, we recommend you create a Before +# block that will explicitly put your database in a known state. +Cucumber::Rails::World.use_transactional_fixtures = true + +# If you set this to false, any error raised from within your app will bubble +# up to your step definition and out to cucumber unless you catch it somewhere +# on the way. You can make Rails rescue errors and render error pages on a +# per-scenario basis by tagging a scenario or feature with the @allow-rescue tag. +# +# If you set this to true, Rails will rescue all errors and render error +# pages, more or less in the same way your application would behave in the +# default production environment. It's not recommended to do this for all +# of your scenarios, as this makes it hard to discover errors in your application. +ActionController::Base.allow_rescue = false + +require 'cucumber' +# Comment out the next line if you don't want Cucumber Unicode support +require 'cucumber/formatter/unicode' +require 'cucumber/webrat/element_locator' # Lets you do table.diff!(element_at('#my_table_or_dl_or_ul_or_ol').to_table) +require 'cucumber/rails/rspec' + +require 'webrat' +require 'webrat/core/matchers' +Webrat.configure do |config| + config.mode = :rails + config.open_error_files = false # Set to true if you want error pages to pop up in the browser +end + diff --git a/features/support/paths.rb b/features/support/paths.rb new file mode 100644 index 0000000..5a86383 --- /dev/null +++ b/features/support/paths.rb @@ -0,0 +1,30 @@ +module NavigationHelpers + # Maps a name to a path. Used by the + # + # When /^I go to (.+)$/ do |page_name| + # + # step definition in webrat_steps.rb + # + def path_to(page_name) + case page_name + + when /the home\s?page/ + '/' + when /the new view_roster page/ + new_view_roster_path + + + # Add more mappings here. + # Here is a more fancy example: + # + # when /^(.*)'s profile page$/i + # user_profile_path(User.find_by_login($1)) + + else + raise "Can't find mapping from \"#{page_name}\" to a path.\n" + + "Now, go and add a mapping in #{__FILE__}" + end + end +end + +World(NavigationHelpers) diff --git a/features/support/version_check.rb b/features/support/version_check.rb new file mode 100644 index 0000000..1cee158 --- /dev/null +++ b/features/support/version_check.rb @@ -0,0 +1,31 @@ +require 'cucumber/formatter/ansicolor' +extend Cucumber::Formatter::ANSIColor +if Cucumber::VERSION != '0.4.4' +warning = <<-WARNING +#{red_cukes(15)} + + #{red_cukes(1)} R O T T E N C U C U M B E R A L E R T #{red_cukes(1)} + +Your #{__FILE__.gsub(/version_check.rb$/, 'env.rb')} file was generated with Cucumber 0.4.4, +but you seem to be running Cucumber #{Cucumber::VERSION}. If you're running an older +version than #{Cucumber::VERSION}, just upgrade your gem. If you're running a newer +version than #{Cucumber::VERSION} you should: + + 1) Read http://wiki.github.com/aslakhellesoy/cucumber/upgrading + + 2) Regenerate your cucumber environment with the following command: + + ruby script/generate cucumber + +If you get prompted to replace a file, hit 'd' to see the difference. +When you're sure you have captured any personal edits, confirm that you +want to overwrite #{__FILE__.gsub(/version_check.rb$/, 'env.rb')} by pressing 'y'. Then reapply any +personal changes that may have been overwritten, preferably in separate files. + +This message will then self destruct. + +#{red_cukes(15)} +WARNING +warn(warning) +at_exit {warn(warning)} +end \ No newline at end of file diff --git a/features/view_roster.feature b/features/view_roster.feature new file mode 100644 index 0000000..e2613fb --- /dev/null +++ b/features/view_roster.feature @@ -0,0 +1,21 @@ +Feature: Volunteer views current roster for a day of action + In order to see what timeslots are not yet filled + A volunteer + wants to see the current state of the roster for a day of action + + @allow-rescue + Scenario: Roster for non-existant day of action will 404 + When I view the roster for the day of action that does not exist + Then I will see a 404 + + Scenario: Initially the roster will display an empty space for each timeslot + Given a Day of Action has been set up for "1975-07-30" in "Perth" + When I view the roster for the day of action + Then I will see a section for each hour between 9 am and 5 pm + And each section will be divided into 5 minute slots + And each slot will be free + And I will be reminded that the times are in "Perth Time" + + Scenario: Slots that are already taken will be shown as taken + + diff --git a/lib/tasks/cucumber.rake b/lib/tasks/cucumber.rake new file mode 100644 index 0000000..b355f33 --- /dev/null +++ b/lib/tasks/cucumber.rake @@ -0,0 +1,46 @@ +# This file was generated by +# Find vendored gem or plugin of cucumber +vendored_cucumber_dir = Dir["#{RAILS_ROOT}/vendor/{gems,plugins}/cucumber*"].first +$LOAD_PATH.unshift("#{vendored_cucumber_dir}/lib") unless vendored_cucumber_dir.nil? + +unless ARGV.any? {|a| a =~ /^gems/} + +begin + require 'cucumber/rake/task' + + # Use vendored cucumber binary if possible. If it's not vendored, + # Cucumber::Rake::Task will automatically use installed gem's cucumber binary + vendored_cucumber_binary = "#{vendored_cucumber_dir}/bin/cucumber" unless vendored_cucumber_dir.nil? + + namespace :cucumber do + Cucumber::Rake::Task.new({:ok => 'db:test:prepare'}, 'Run features that should pass') do |t| + t.binary = vendored_cucumber_binary + t.fork = true # You may get faster startup if you set this to false + t.cucumber_opts = "--color --tags ~@wip --strict --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'}" + end + + Cucumber::Rake::Task.new({:wip => 'db:test:prepare'}, 'Run features that are being worked on') do |t| + t.binary = vendored_cucumber_binary + t.fork = true # You may get faster startup if you set this to false + t.cucumber_opts = "--color --tags @wip:2 --wip --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'}" + end + + desc 'Run all features' + task :all => [:ok, :wip] + end + desc 'Alias for cucumber:ok' + task :cucumber => 'cucumber:ok' + + task :default => :cucumber + + task :features => :cucumber do + STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***" + end +rescue LoadError + desc 'cucumber rake task not available (cucumber not installed)' + task :cucumber do + abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin' + end +end + +end diff --git a/lib/tasks/rspec.rake b/lib/tasks/rspec.rake new file mode 100644 index 0000000..dba3ffc --- /dev/null +++ b/lib/tasks/rspec.rake @@ -0,0 +1,144 @@ +gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9 +rspec_gem_dir = nil +Dir["#{RAILS_ROOT}/vendor/gems/*"].each do |subdir| + rspec_gem_dir = subdir if subdir.gsub("#{RAILS_ROOT}/vendor/gems/","") =~ /^(\w+-)?rspec-(\d+)/ && File.exist?("#{subdir}/lib/spec/rake/spectask.rb") +end +rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec') + +if rspec_gem_dir && (test ?d, rspec_plugin_dir) + raise "\n#{'*'*50}\nYou have rspec installed in both vendor/gems and vendor/plugins\nPlease pick one and dispose of the other.\n#{'*'*50}\n\n" +end + +if rspec_gem_dir + $LOAD_PATH.unshift("#{rspec_gem_dir}/lib") +elsif File.exist?(rspec_plugin_dir) + $LOAD_PATH.unshift("#{rspec_plugin_dir}/lib") +end + +# Don't load rspec if running "rake gems:*" +unless ARGV.any? {|a| a =~ /^gems/} + +begin + require 'spec/rake/spectask' +rescue MissingSourceFile + module Spec + module Rake + class SpecTask + def initialize(name) + task name do + # if rspec-rails is a configured gem, this will output helpful material and exit ... + require File.expand_path(File.join(File.dirname(__FILE__),"..","..","config","environment")) + + # ... otherwise, do this: + raise <<-MSG + +#{"*" * 80} +* You are trying to run an rspec rake task defined in +* #{__FILE__}, +* but rspec can not be found in vendor/gems, vendor/plugins or system gems. +#{"*" * 80} +MSG + end + end + end + end + end +end + +Rake.application.instance_variable_get('@tasks').delete('default') + +spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop +task :noop do +end + +task :default => :spec +task :stats => "spec:statsetup" + +desc "Run all specs in spec directory (excluding plugin specs)" +Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t| + t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""] + t.spec_files = FileList['spec/**/*_spec.rb'] +end + +namespace :spec do + desc "Run all specs in spec directory with RCov (excluding plugin specs)" + Spec::Rake::SpecTask.new(:rcov) do |t| + t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""] + t.spec_files = FileList['spec/**/*_spec.rb'] + t.rcov = true + t.rcov_opts = lambda do + IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten + end + end + + desc "Print Specdoc for all specs (excluding plugin specs)" + Spec::Rake::SpecTask.new(:doc) do |t| + t.spec_opts = ["--format", "specdoc", "--dry-run"] + t.spec_files = FileList['spec/**/*_spec.rb'] + end + + desc "Print Specdoc for all plugin examples" + Spec::Rake::SpecTask.new(:plugin_doc) do |t| + t.spec_opts = ["--format", "specdoc", "--dry-run"] + t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*') + end + + [:models, :controllers, :views, :helpers, :lib, :integration].each do |sub| + desc "Run the code examples in spec/#{sub}" + Spec::Rake::SpecTask.new(sub => spec_prereq) do |t| + t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""] + t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"] + end + end + + desc "Run the code examples in vendor/plugins (except RSpec's own)" + Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t| + t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""] + t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*") + end + + namespace :plugins do + desc "Runs the examples for rspec_on_rails" + Spec::Rake::SpecTask.new(:rspec_on_rails) do |t| + t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""] + t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*_spec.rb'] + end + end + + # Setup specs for stats + task :statsetup do + require 'code_statistics' + ::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models') + ::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views') + ::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers') + ::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers') + ::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib') + ::STATS_DIRECTORIES << %w(Routing\ specs spec/routing) if File.exist?('spec/routing') + ::STATS_DIRECTORIES << %w(Integration\ specs spec/integration) if File.exist?('spec/integration') + ::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models') + ::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views') + ::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers') + ::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers') + ::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib') + ::CodeStatistics::TEST_TYPES << "Routing specs" if File.exist?('spec/routing') + ::CodeStatistics::TEST_TYPES << "Integration specs" if File.exist?('spec/integration') + end + + namespace :db do + namespace :fixtures do + desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y. Load from subdirectory in test/fixtures using FIXTURES_DIR=z." + task :load => :environment do + ActiveRecord::Base.establish_connection(Rails.env) + base_dir = File.join(Rails.root, 'spec', 'fixtures') + fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir + + require 'active_record/fixtures' + (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file| + Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*')) + end + end + end + end +end + +end diff --git a/log/cucumber.log b/log/cucumber.log new file mode 100644 index 0000000..d3912fc --- /dev/null +++ b/log/cucumber.log @@ -0,0 +1,64232 @@ +# Logfile created on Mon Dec 28 13:00:46 +1100 2009 DayOfAction Create (1.3ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:13:33', '2009-12-28 02:13:33') + DayOfAction Create (74.2ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:15:11', '2009-12-28 02:15:11') + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:15:59', '2009-12-28 02:15:59') + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:19:09', '2009-12-28 02:19:09') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-28 13:19:09) [GET] + Parameters: {"id"=>"1"} + DayOfAction Create (0.7ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:33:48', '2009-12-28 02:33:48') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-28 13:33:49) [GET] + Parameters: {"id"=>"1"} + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:34:06', '2009-12-28 02:34:06') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 13:34:06) [GET] + Parameters: {"id"=>"1"} + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-28 13:34:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:44:56', '2009-12-28 02:44:56') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 13:44:56) [GET] + Parameters: {"id"=>"1"} + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-28 13:44:56) [GET] + Parameters: {"id"=>"1"} + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:45:43', '2009-12-28 02:45:43') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 13:45:43) [GET] + Parameters: {"id"=>"1"} + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-28 13:45:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 02:46:12', '2009-12-28 02:46:12') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 13:46:12) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:00:00', '2009-12-28 03:00:00') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:00:00) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:00:31', '2009-12-28 03:00:31') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:00:31) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:03:34', '2009-12-28 03:03:34') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:03:34) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:04:26', '2009-12-28 03:04:26') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:04:26) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:05:05', '2009-12-28 03:05:05') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:05:05) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:05:39', '2009-12-28 03:05:39') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:05:39) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:06:05', '2009-12-28 03:06:05') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:06:05) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:16:19', '2009-12-28 03:16:19') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:16:19) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:17:49', '2009-12-28 03:17:49') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:17:49) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:18:02', '2009-12-28 03:18:02') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:18:02) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:18:15', '2009-12-28 03:18:15') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:18:15) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:20:17', '2009-12-28 03:20:17') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:20:17) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (55.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:21:18', '2009-12-28 03:21:18') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:21:18) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 55) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:32:34', '2009-12-28 03:32:34') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:32:34) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:37:40', '2009-12-28 03:37:40') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:37:40) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:38:35', '2009-12-28 03:38:35') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:38:35) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:39:33', '2009-12-28 03:39:33') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:39:33) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:40:02', '2009-12-28 03:40:02') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:40:02) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:42:11', '2009-12-28 03:42:11') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:42:11) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:42:26', '2009-12-28 03:42:26') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:42:26) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:42:49', '2009-12-28 03:42:49') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:42:49) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:44:58', '2009-12-28 03:44:58') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:44:58) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:45:40', '2009-12-28 03:45:40') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:45:40) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:46:52', '2009-12-28 03:46:52') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:46:52) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 3, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:48:06', '2009-12-28 03:48:06') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:48:06) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 3, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-28 03:48:28', '2009-12-28 03:48:28') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:48:28) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 3, DB: 0) | 200 OK [http://www.example.com/days_of_action/1] + DayOfAction Create (0.6ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-29 00:38:41', '2009-12-29 00:38:41') +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 11:38:42) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 71ms (View: 68, DB: 1) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 09:55:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 10:55:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 11:55:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 12:55:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 13:55:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 14:55:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 15:55:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:00:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:05:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:10:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:15:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:20:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:25:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:30:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:35:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:40:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:45:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:50:00', '2009-12-29 04:38:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:38:01', NULL, '-4712-01-01 16:55:00', '2009-12-29 04:38:01') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:38:01', '-4712-01-01 00:00:00', NULL, '2009-12-29 04:38:01') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:38:01' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 15:38:02) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 37ms (View: 33, DB: 17) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (54.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 09:55:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 10:55:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 11:55:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 12:55:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 13:55:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 14:55:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 15:55:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:00:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:05:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:10:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:15:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:20:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:25:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:30:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:35:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:40:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:45:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:50:00', '2009-12-29 04:52:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:52:45', NULL, '-4712-01-01 16:55:00', '2009-12-29 04:52:45') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:52:45', '-4712-01-01 00:00:00', NULL, '2009-12-29 04:52:45') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:45' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:52:46' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 15:52:46) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 36ms (View: 33, DB: 71) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 09:55:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 10:55:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 11:55:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 12:55:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 13:55:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 14:55:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 15:55:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:00:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:05:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:10:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:15:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:20:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:25:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:30:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:35:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:40:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:45:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:50:00', '2009-12-29 05:36:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:36:51', NULL, '-4712-01-01 16:55:00', '2009-12-29 05:36:51') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:36:51', '-4712-01-01 00:00:00', NULL, '2009-12-29 05:36:51') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:36:51' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:36:51) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 131, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 09:55:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 10:55:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 11:55:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 12:55:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 13:55:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 14:55:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 15:55:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:00:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:05:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:10:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:15:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:20:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:25:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:30:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:35:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:40:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:45:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:50:00', '2009-12-29 05:38:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:38:21', NULL, '-4712-01-01 16:55:00', '2009-12-29 05:38:21') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:38:21', '-4712-01-01 00:00:00', NULL, '2009-12-29 05:38:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 8 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:38:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:38:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 150ms (View: 137, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 09:55:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 10:55:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 11:55:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 12:55:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 13:55:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 14:55:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 15:55:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:00:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:05:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:10:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:15:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:20:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:25:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:30:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:35:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:40:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:45:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:50:00', '2009-12-29 05:42:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:42:44', NULL, '-4712-01-01 16:55:00', '2009-12-29 05:42:44') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:42:44', '-4712-01-01 00:00:00', NULL, '2009-12-29 05:42:44') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:42:44' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:42:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 140ms (View: 129, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 09:55:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 10:55:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 11:55:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 12:55:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 13:55:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 14:55:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 15:55:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:00:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:05:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:10:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:15:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:20:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:25:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:30:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:35:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:40:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:45:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:50:00', '2009-12-29 05:43:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:43:21', NULL, '-4712-01-01 16:55:00', '2009-12-29 05:43:21') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:43:21', '-4712-01-01 00:00:00', NULL, '2009-12-29 05:43:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 39 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 40 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 41 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 91 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:43:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:43:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 149ms (View: 138, DB: 26) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 09:55:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 10:55:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 11:55:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 12:55:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 13:55:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 14:55:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 15:55:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:00:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:05:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:10:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:15:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:20:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:25:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:30:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:35:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:40:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:45:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:50:00', '2009-12-29 05:45:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:45:11', NULL, '-4712-01-01 16:55:00', '2009-12-29 05:45:11') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:45:11', '-4712-01-01 00:00:00', NULL, '2009-12-29 05:45:11') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 85 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:45:11' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:45:11) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 160ms (View: 138, DB: 26) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 09:55:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 10:55:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 11:55:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 12:55:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 13:55:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 14:55:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 15:55:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:00:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:05:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:10:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:15:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:20:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:25:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:30:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:35:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:40:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:45:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:50:00', '2009-12-29 05:46:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:14', NULL, '-4712-01-01 16:55:00', '2009-12-29 05:46:14') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:46:14', '-4712-01-01 00:00:00', NULL, '2009-12-29 05:46:14') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:14' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:46:14) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 143ms (View: 133, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 09:55:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 10:55:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 11:55:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 12:55:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 13:55:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 14:55:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 15:55:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:00:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:05:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:10:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:15:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:20:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:25:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:30:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:35:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:40:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:45:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:50:00', '2009-12-29 05:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:46:28', NULL, '-4712-01-01 16:55:00', '2009-12-29 05:46:28') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:46:28', '-4712-01-01 00:00:00', NULL, '2009-12-29 05:46:28') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:46:28' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:46:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 142ms (View: 131, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:02:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:28', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:02:28') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:02:28', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:02:28') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:28' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:29' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:02:29) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 139ms (View: 128, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:47', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:02:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:02:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:02:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:02:48', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:02:48') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:02:48', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:02:48') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:02:48' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:02:48) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 138ms (View: 128, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:05:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:05:59', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:05:59') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:05:59', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:05:59') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:05:59' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:05:59) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 130, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (69.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:16:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:16:43', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:16:43') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:16:43', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:16:43') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 30 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 70 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 91 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:16:43' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:16:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 130, DB: 93) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:17:11') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:17:11') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:11', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:17:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:17:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:17:12', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:17:12') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:17:12', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:17:12') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 40 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 44 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 67 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:17:12' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:17:12) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 146ms (View: 134, DB: 28) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:18:14') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:14', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:18:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:18:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:18:15', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:18:15') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:18:15', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:18:15') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:18:15' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:18:15) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 142ms (View: 129, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:21:54') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:21:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:21:54', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:21:54') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:21:54', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:21:54') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 53 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 88 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:21:54' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:21:54) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 130, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:25:13') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:25:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:13', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:25:13') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:25:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:14', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:25:14') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:25:14', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:25:14') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 81 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:14' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:25:14) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 140ms (View: 130, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:25:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:25:45', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:25:45') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:25:45', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:25:45') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:25:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:25:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 130, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:49', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:35:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:49', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:35:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:49', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:35:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:49', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:35:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:49', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:35:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:49', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:35:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:49', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:35:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:35:50') + TimeSlot Create (1.0ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:35:50') + TimeSlot Create (1.0ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:35:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:35:50', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:35:50') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:35:50', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:35:50') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:35:50' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:35:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.9ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 144ms (View: 133, DB: 28) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:03', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:36:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:36:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:36:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:04', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:36:04') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:36:04', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:36:04') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 20 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 66 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 91 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:04' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:36:04) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 161ms (View: 146, DB: 32) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:36:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:36:19', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:36:19') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:36:19', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:36:19') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 1 + TimeSlot Update (1.6ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 6 + TimeSlot Update (0.5ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:19' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:36:20' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:36:20) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 142ms (View: 132, DB: 27) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:37:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:37:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:37:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:37:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:49', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:37:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:37:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:37:50', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:37:50') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:37:50', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:37:50') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:37:50' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:37:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 131, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:38:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:27', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:38:27') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:38:27', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:38:27') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:27' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 35 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 91 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:28' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:38:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 151ms (View: 141, DB: 26) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:38:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:38:46') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:38:46', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:38:46') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:38:46', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:38:46') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 5 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 13 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:38:46' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:38:46) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 155ms (View: 145, DB: 26) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:39:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:30', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:39:30') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:39:30', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:39:30') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 76 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:30' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:39:30) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.7ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 154ms (View: 143, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:39:44') + TimeSlot Create (2.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:39:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:39:44', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:39:44') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:39:44', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:39:44') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 48 + TimeSlot Update (2.6ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 90 + TimeSlot Update (0.8ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:44' WHERE "id" = 91 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:39:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:39:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.7ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 145ms (View: 135, DB: 31) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) [0;1mINSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:48:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:48:22', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:48:22') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:48:22', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:48:22') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:48:22' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:48:22) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 139ms (View: 129, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:25:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:30:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:35:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:40:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:45:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:50:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 22:55:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:25:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:30:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:35:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:40:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:45:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:50:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-28 23:55:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:25:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:30:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:35:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:40:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:45:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:50:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 00:55:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:25:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:30:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:35:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:40:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:45:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:50:00', '2009-12-29 06:53:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 01:55:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:25:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:30:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:35:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:40:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:45:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:50:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 02:55:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:25:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:30:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:35:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:40:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:45:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:50:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 03:55:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:25:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:30:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:35:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:40:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:45:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:50:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 04:55:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 05:00:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 05:05:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 05:10:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 05:15:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:35', NULL, '2009-12-29 05:20:00', '2009-12-29 06:53:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:36', NULL, '2009-12-29 05:25:00', '2009-12-29 06:53:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:36', NULL, '2009-12-29 05:30:00', '2009-12-29 06:53:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:36', NULL, '2009-12-29 05:35:00', '2009-12-29 06:53:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:36', NULL, '2009-12-29 05:40:00', '2009-12-29 06:53:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:36', NULL, '2009-12-29 05:45:00', '2009-12-29 06:53:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:36', NULL, '2009-12-29 05:50:00', '2009-12-29 06:53:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:53:36', NULL, '2009-12-29 05:55:00', '2009-12-29 06:53:36') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:53:36', '2009-12-29', NULL, '2009-12-29 06:53:36') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 76 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 06:53:36' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:53:36) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 36ms (View: 26, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:05:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:10:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:15:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:20:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:25:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:30:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:35:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:40:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:45:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:50:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 22:55:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:05:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:10:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:15:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:20:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:25:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:30:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:35:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:40:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:45:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:50:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-28 23:55:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:05:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:10:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:15:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:20:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:25:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:30:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:35:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:40:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:45:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:50:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 00:55:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:05:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:10:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:15:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:20:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:25:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:30:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:35:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:40:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:45:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:50:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 01:55:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:05:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:10:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:15:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:20:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:25:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:30:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:35:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:40:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:45:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:50:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 02:55:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:05:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:10:00', '2009-12-29 07:11:52') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:15:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:20:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:25:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:30:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:35:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:40:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:45:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:50:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 03:55:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:05:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:10:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:15:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:20:00', '2009-12-29 07:11:52') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:25:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:30:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:35:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:40:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:45:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:50:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 04:55:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:52', NULL, '2009-12-29 05:00:00', '2009-12-29 07:11:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:05:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:10:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:15:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:20:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:25:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:30:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:35:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:40:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:45:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:50:00', '2009-12-29 07:11:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:11:53', NULL, '2009-12-29 05:55:00', '2009-12-29 07:11:53') + DayOfAction Create (101.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 07:11:53', '2009-12-29 18:11:52', NULL, '2009-12-29 07:11:53') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 07:11:53' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 18:11:53) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 39ms (View: 28, DB: 126) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 01:55:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 02:55:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 03:55:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 04:55:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 05:55:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 06:55:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 07:55:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:00:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:05:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:10:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:15:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:20:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:25:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:30:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:35:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:40:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:45:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:50:00', '2009-12-29 10:36:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:36:18', NULL, '1975-07-30 08:55:00', '2009-12-29 10:36:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:36:18', '1975-07-30', 'Perth', '2009-12-29 10:36:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:36:18' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:36:19) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 36ms (View: 27, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 01:55:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 02:55:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 03:55:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 04:55:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 05:55:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 06:55:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 07:55:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:00:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:05:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:10:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:15:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:20:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:25:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:30:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:35:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:40:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:45:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:50:00', '2009-12-29 10:42:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:42:59', NULL, '1975-07-30 08:55:00', '2009-12-29 10:42:59') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:42:59', '1975-07-30', 'Perth', '2009-12-29 10:42:59') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:42:59' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:42:59) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 41ms (View: 31, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (1.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:10:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:15:00', '2009-12-29 10:44:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:20:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:25:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:30:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:35:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:40:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:45:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:50:00', '2009-12-29 10:44:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 01:55:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:10:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:15:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:20:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:25:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:30:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:35:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:40:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:45:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:50:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 02:55:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:10:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:15:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:20:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:25:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:30:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:35:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:40:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:45:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:50:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 03:55:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:10:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:15:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:20:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:25:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:30:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:35:00', '2009-12-29 10:44:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:40:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:45:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:50:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 04:55:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:10:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:15:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:20:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:25:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:30:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:35:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:40:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:45:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:50:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 05:55:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:10:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:15:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:20:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:25:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:30:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:35:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:40:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:45:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:50:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 06:55:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:10:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:15:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:20:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:25:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:30:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:35:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:40:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:45:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:50:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 07:55:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 08:00:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:48', NULL, '1975-07-30 08:05:00', '2009-12-29 10:44:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:10:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:15:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:20:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:25:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:30:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:35:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:40:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:45:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:50:00', '2009-12-29 10:44:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:49', NULL, '1975-07-30 08:55:00', '2009-12-29 10:44:49') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:44:49', '1975-07-30', 'Perth', '2009-12-29 10:44:49') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:44:49' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:44:49) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 41ms (View: 31, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 01:55:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 02:55:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 03:55:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 04:55:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 05:55:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 06:55:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 07:55:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:00:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:05:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:10:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:15:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:20:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:25:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:30:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:35:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:40:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:45:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:50:00', '2009-12-29 10:46:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:46:48', NULL, '1975-07-30 08:55:00', '2009-12-29 10:46:48') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:46:48', '1975-07-30', 'Perth', '2009-12-29 10:46:48') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 12 + TimeSlot Update (0.5ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 24 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:46:48' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:46:48) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 32, DB: 29) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 01:55:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 02:55:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 03:55:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 04:55:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 05:55:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 06:55:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 07:55:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:00:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:05:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:10:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:15:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:20:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:25:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:30:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:35:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:40:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:45:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:50:00', '2009-12-29 10:59:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:59:28', NULL, '1975-07-30 08:55:00', '2009-12-29 10:59:28') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:59:28', '1975-07-30', 'Perth', '2009-12-29 10:59:28') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:59:28' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:59:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 32, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 01:55:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 02:55:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 03:55:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 04:55:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 05:55:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 06:55:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 07:55:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:00:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:05:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:10:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:15:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:20:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:25:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:30:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:35:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:40:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:45:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:50:00', '2009-12-29 11:01:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:05', NULL, '1975-07-30 08:55:00', '2009-12-29 11:01:05') + DayOfAction Create (0.3ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 11:01:05', '1975-07-30', 'Perth', '2009-12-29 11:01:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:05' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 22:01:05) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 32, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (82.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 01:55:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 02:55:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 03:55:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 04:55:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 05:55:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 06:55:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 07:55:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:00:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:05:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:10:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:15:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:20:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:25:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:30:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:35:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:40:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:45:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:50:00', '2009-12-29 11:01:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:28', NULL, '1975-07-30 08:55:00', '2009-12-29 11:01:28') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 11:01:28', '1975-07-30', 'Perth', '2009-12-29 11:01:28') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:28' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 22:01:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 32, DB: 105) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 01:55:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 02:55:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 03:55:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 04:55:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 05:55:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 06:55:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 07:55:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:00:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:05:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:10:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:15:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:20:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:25:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:30:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:35:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:40:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:45:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:50:00', '2009-12-29 11:01:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 11:01:51', NULL, '1975-07-30 08:55:00', '2009-12-29 11:01:51') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 11:01:51', '1975-07-30', 'Perth', '2009-12-29 11:01:51') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 11:01:51' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 22:01:52) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 32, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 01:55:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 02:55:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 03:55:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 04:55:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 05:55:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 06:55:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 07:55:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:00:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:05:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:10:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:15:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:20:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:25:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:30:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:35:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:40:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:45:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:50:00', '2009-12-29 23:28:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:28:21', NULL, '1975-07-30 08:55:00', '2009-12-29 23:28:21') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 23:28:21', '1975-07-30', 'Perth', '2009-12-29 23:28:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:28:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:28:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 67ms (View: 57, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:50:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 01:55:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:50:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 02:55:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:50:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 03:55:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:50:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 04:55:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:50:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 05:55:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:50:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 06:55:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:50:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 07:55:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:00:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:05:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:10:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:15:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:20:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:25:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:30:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:35:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:40:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:49', NULL, '1975-07-30 08:45:00', '2009-12-29 23:36:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:50', NULL, '1975-07-30 08:50:00', '2009-12-29 23:36:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:36:50', NULL, '1975-07-30 08:55:00', '2009-12-29 23:36:50') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 23:36:50', '1975-07-30', 'Perth', '2009-12-29 23:36:50') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:36:50' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:36:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 43ms (View: 33, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:37:26) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-30 10:37:26) [GET] + Parameters: {"id"=>"-1"} + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 01:55:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 02:55:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 03:55:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 04:55:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 05:55:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 06:55:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 07:55:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:00:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:05:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:10:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:15:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:20:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:25:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:30:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:35:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:40:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:45:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:50:00', '2009-12-29 23:37:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:37:26', NULL, '1975-07-30 08:55:00', '2009-12-29 23:37:26') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 23:37:26', '1975-07-30', 'Perth', '2009-12-29 23:37:26') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:37:26' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:37:26) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 34, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:43:37) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-30 10:43:37) [GET] + Parameters: {"id"=>"-1"} + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 01:55:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 02:55:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 03:55:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 04:55:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 05:55:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 06:55:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 07:55:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:00:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:05:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:10:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:15:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:20:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:25:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:30:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:35:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:40:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:45:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:50:00', '2009-12-29 23:43:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:43:37', NULL, '1975-07-30 08:55:00', '2009-12-29 23:43:37') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 23:43:37', '1975-07-30', 'Perth', '2009-12-29 23:43:37') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:43:37' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:43:37) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 33, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:46:03) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 01:55:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 02:55:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 03:55:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 04:55:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 05:55:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 06:55:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 07:55:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:00:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:05:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:10:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:15:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:20:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:25:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:30:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:35:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:40:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:45:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:50:00', '2009-12-29 23:46:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 23:46:03', NULL, '1975-07-30 08:55:00', '2009-12-29 23:46:03') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 23:46:03', '1975-07-30', 'Perth', '2009-12-29 23:46:03') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 23:46:03' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:46:03) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 33, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:02:03) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 07:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 08:55:00', '2009-12-30 00:02:04') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:02:04', '1975-07-30', 'Perth', '2009-12-30 00:02:04') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:02:04) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 41ms (View: 33, DB: 26) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-29 23:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 00:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 01:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 02:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 03:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 04:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 05:55:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:00:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:05:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:10:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:15:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:20:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:25:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:30:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:35:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:40:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:45:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:50:00', '2009-12-30 00:02:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:02:04', NULL, '1975-07-30 06:55:00', '2009-12-30 00:02:04') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:02:04', '1975-07-30', 'Canberra', '2009-12-30 00:02:04') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 9 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 28 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 33 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:04' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:02:05' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:02:05) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 38ms (View: 29, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:07:25) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 01:55:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 02:55:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 03:55:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 04:55:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 05:55:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 06:55:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 07:55:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:00:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:05:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:10:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:15:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:20:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:25:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:30:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:35:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:40:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:45:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:50:00', '2009-12-30 00:07:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:25', NULL, '1975-07-30 08:55:00', '2009-12-30 00:07:25') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:07:25', '1975-07-30', 'Perth', '2009-12-30 00:07:25') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:25' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:07:25) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 41ms (View: 32, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.7ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-29 23:55:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 00:55:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 01:55:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 02:55:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 03:55:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 04:55:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 05:55:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:00:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:05:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:10:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:15:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:20:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:25:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:30:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:35:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:40:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:45:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:50:00', '2009-12-30 00:07:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:07:26', NULL, '1975-07-30 06:55:00', '2009-12-30 00:07:26') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:07:26', '1975-07-30', 'Canberra', '2009-12-30 00:07:26') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:07:26' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:07:26) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 40ms (View: 31, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:31:33) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 07:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 08:55:00', '2009-12-30 00:31:34') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:31:34', '1975-07-30', 'Perth', '2009-12-30 00:31:34') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:31:34) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 95ms (View: 87, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-29 23:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 00:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 01:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 02:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 03:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 04:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 05:55:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:00:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:05:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:10:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:15:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:20:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:25:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:30:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:35:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:40:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:45:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:50:00', '2009-12-30 00:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:31:34', NULL, '1975-07-30 06:55:00', '2009-12-30 00:31:34') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:31:34', '1975-07-30', 'Canberra', '2009-12-30 00:31:34') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:34' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:31:35' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:31:35) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 93ms (View: 85, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:46:28) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 01:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 02:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 03:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 04:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 05:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 06:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 07:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 08:55:00', '2009-12-30 00:46:28') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:46:28', '1975-07-30', 'Perth', '2009-12-30 00:46:28') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:28' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:46:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 88, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:35:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:40:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:45:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:50:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-29 23:55:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 00:00:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 00:05:00', '2009-12-30 00:46:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 00:10:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 00:15:00', '2009-12-30 00:46:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 00:20:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 00:25:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:28', NULL, '1975-07-30 00:30:00', '2009-12-30 00:46:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 00:35:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 00:40:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 00:45:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 00:50:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 00:55:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:00:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:05:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:10:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:15:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:20:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:25:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:30:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:35:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:40:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:45:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:50:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 01:55:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:00:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:05:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:10:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:15:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:20:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:25:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:30:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:35:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:40:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:45:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:50:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 02:55:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:00:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:05:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:10:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:15:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:20:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:25:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:30:00', '2009-12-30 00:46:29') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:35:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:40:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:45:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:50:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 03:55:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:00:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:05:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:10:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:15:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:20:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:25:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:30:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:35:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:40:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:45:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:50:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 04:55:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:00:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:05:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:10:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:15:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:20:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:25:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:30:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:35:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:40:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:45:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:50:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 05:55:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:00:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:05:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:10:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:15:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:20:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:25:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:30:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:35:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:40:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:45:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:50:00', '2009-12-30 00:46:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:46:29', NULL, '1975-07-30 06:55:00', '2009-12-30 00:46:29') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:46:29', '1975-07-30', 'Canberra', '2009-12-30 00:46:29') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 62 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:46:29' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:46:29) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 95ms (View: 86, DB: 26) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:56:57) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:00:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:05:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:10:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:15:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:20:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:25:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:30:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:35:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:40:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:45:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:50:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 01:55:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 02:00:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 02:05:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 02:10:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 02:15:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 02:20:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:57', NULL, '1975-07-30 02:25:00', '2009-12-30 00:56:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 07:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 08:55:00', '2009-12-30 00:56:58') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:56:58', '1975-07-30', 'Perth', '2009-12-30 00:56:58') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:56:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 88, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-29 23:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 00:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 01:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 02:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 03:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 04:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 05:55:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:00:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:05:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:10:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:15:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:20:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:25:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:30:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:35:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:40:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:45:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:50:00', '2009-12-30 00:56:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:56:58', NULL, '1975-07-30 06:55:00', '2009-12-30 00:56:58') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:56:58', '1975-07-30', 'Canberra', '2009-12-30 00:56:58') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:56:58' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:56:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 95ms (View: 87, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:57:43) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 01:55:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 02:55:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 03:55:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 04:55:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 05:55:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 06:55:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 07:55:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:00:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:05:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:10:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:15:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:20:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:25:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:30:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:35:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:40:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:45:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:50:00', '2009-12-30 00:57:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:43', NULL, '1975-07-30 08:55:00', '2009-12-30 00:57:43') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:57:43', '1975-07-30', 'Perth', '2009-12-30 00:57:43') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:43' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:57:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 88, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-29 23:55:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 00:55:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 01:55:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 02:55:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 03:55:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 04:55:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 05:55:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:00:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:05:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:10:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:15:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:20:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:25:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:30:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:35:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:40:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:45:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:50:00', '2009-12-30 00:57:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:57:44', NULL, '1975-07-30 06:55:00', '2009-12-30 00:57:44') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:57:44', '1975-07-30', 'Canberra', '2009-12-30 00:57:44') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:57:44' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:57:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 85, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:59:34) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 01:55:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 02:55:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 03:55:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 04:55:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 05:55:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 06:55:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 07:55:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:00:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:05:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:10:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:15:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:20:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:25:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:30:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:35:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:40:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:45:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:50:00', '2009-12-30 00:59:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:34', NULL, '1975-07-30 08:55:00', '2009-12-30 00:59:34') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:59:34', '1975-07-30', 'Perth', '2009-12-30 00:59:34') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:34' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 37 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 39 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:59:35) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 88, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-29 23:55:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 00:55:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 01:55:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 02:55:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 03:55:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 04:55:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 05:55:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:00:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:05:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:10:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:15:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:20:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:25:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:30:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:35:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:40:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:45:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:50:00', '2009-12-30 00:59:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 00:59:35', NULL, '1975-07-30 06:55:00', '2009-12-30 00:59:35') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 00:59:35', '1975-07-30', 'Canberra', '2009-12-30 00:59:35') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 00:59:35' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:59:35) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 95ms (View: 86, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:01:25) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 01:55:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 02:55:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 03:55:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 04:55:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 05:55:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 06:55:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 07:55:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:40:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:45:00', '2009-12-30 01:01:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:50:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-30 08:55:00', '2009-12-30 01:01:25') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:01:25', '1975-07-30', 'Perth', '2009-12-30 01:01:25') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 2 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 32 + TimeSlot Update (0.6ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 57 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 58 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 59 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 60 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 62 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:25' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:01:25) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 98ms (View: 88, DB: 34) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:00:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:05:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:10:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:15:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:20:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:25:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:30:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:25', NULL, '1975-07-29 23:35:00', '2009-12-30 01:01:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-29 23:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-29 23:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-29 23:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-29 23:55:00', '2009-12-30 01:01:26') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:00:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:05:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:10:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:15:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:20:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:25:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:30:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:35:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 00:55:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:00:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:05:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:10:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:15:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:20:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:25:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:30:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:35:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 01:55:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:00:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:05:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:10:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:15:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:20:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:25:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:30:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:35:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 02:55:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:00:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:05:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:10:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:15:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:20:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:25:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:30:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:35:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 03:55:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:00:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:05:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:10:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:15:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:20:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:25:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:30:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:35:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 04:55:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:00:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:05:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:10:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:15:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:20:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:25:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:30:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:35:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 05:55:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:00:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:05:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:10:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:15:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:20:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:25:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:30:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:35:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:40:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:45:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:50:00', '2009-12-30 01:01:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:26', NULL, '1975-07-30 06:55:00', '2009-12-30 01:01:26') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:01:26', '1975-07-30', 'Canberra', '2009-12-30 01:01:26') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 90 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:26' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:01:26) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 182ms (View: 172, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:01:54) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:00:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:05:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:10:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:15:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:20:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:25:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:30:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:35:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:40:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:45:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:50:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 01:55:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:00:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:05:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:10:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:15:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:20:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:25:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:30:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:35:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:40:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:45:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:50:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 02:55:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:00:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:05:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:10:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:15:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:20:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:25:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:30:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:35:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:40:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:45:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:50:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 03:55:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:00:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:05:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:10:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:15:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:20:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:25:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:30:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:35:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:40:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:45:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:50:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 04:55:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:00:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:05:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:10:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:15:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:20:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:25:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:30:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:35:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:54', NULL, '1975-07-30 05:40:00', '2009-12-30 01:01:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 07:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 08:55:00', '2009-12-30 01:01:55') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:01:55', '1975-07-30', 'Perth', '2009-12-30 01:01:55') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:01:55) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 88, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-29 23:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 00:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 01:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 02:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 03:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 04:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 05:55:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:00:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:05:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:10:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:15:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:20:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:25:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:30:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:35:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:40:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:45:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:50:00', '2009-12-30 01:01:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:01:55', NULL, '1975-07-30 06:55:00', '2009-12-30 01:01:55') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:01:55', '1975-07-30', 'Canberra', '2009-12-30 01:01:55') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 5 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:01:55' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:01:56) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 183ms (View: 173, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:02:32) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (70.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:00:00', '2009-12-30 01:02:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:05:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:10:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:15:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:20:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:25:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:30:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:35:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:40:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:45:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:50:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 01:55:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:00:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:05:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:10:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:15:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:20:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:25:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:30:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:35:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:40:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:45:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:50:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 02:55:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:00:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:05:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:10:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:15:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:20:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:25:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:30:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:35:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:40:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:45:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:50:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 03:55:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 04:00:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 04:05:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:32', NULL, '1975-07-30 04:10:00', '2009-12-30 01:02:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 07:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 08:55:00', '2009-12-30 01:02:33') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:02:33', '1975-07-30', 'Perth', '2009-12-30 01:02:33') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:02:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 97ms (View: 89, DB: 94) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-29 23:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 00:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 01:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 02:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 03:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 04:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 05:55:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:00:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:05:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:10:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:15:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:20:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:25:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:30:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:35:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:40:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:45:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:50:00', '2009-12-30 01:02:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:02:33', NULL, '1975-07-30 06:55:00', '2009-12-30 01:02:33') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:02:33', '1975-07-30', 'Canberra', '2009-12-30 01:02:33') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:33' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:02:34' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:02:34) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (14.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 190ms (View: 174, DB: 30) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:03:05) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:00:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:05:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:10:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:15:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:20:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:25:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:30:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:35:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:40:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:45:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:50:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 01:55:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 02:00:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 02:05:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:05', NULL, '1975-07-30 02:10:00', '2009-12-30 01:03:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 07:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 08:55:00', '2009-12-30 01:03:06') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:03:06', '1975-07-30', 'Perth', '2009-12-30 01:03:06') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 90 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:03:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 88, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-29 23:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 00:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 01:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 02:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 03:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 04:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 05:55:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:00:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:05:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:10:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:15:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:20:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:25:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:30:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:35:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:40:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:45:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:50:00', '2009-12-30 01:03:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:03:06', NULL, '1975-07-30 06:55:00', '2009-12-30 01:03:06') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:03:06', '1975-07-30', 'Canberra', '2009-12-30 01:03:06') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 9 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 14 + TimeSlot Update (0.8ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 40 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 44 + TimeSlot Update (0.4ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 45 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:06' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 88 + TimeSlot Update (0.4ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:03:07' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:03:07) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 93ms (View: 85, DB: 30) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:06:55) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 01:55:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 02:55:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 03:55:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 04:55:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 05:55:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 06:55:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 07:55:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:00:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:05:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:10:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:15:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:20:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:25:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:30:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:35:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:40:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:45:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:50:00', '2009-12-30 01:06:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:55', NULL, '1975-07-30 08:55:00', '2009-12-30 01:06:55') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:06:55', '1975-07-30', 'Perth', '2009-12-30 01:06:55') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:55' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:06:55) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 88, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:00:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:45:00', '2009-12-30 01:06:56') + TimeSlot Create (2.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-29 23:55:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:00:00', '2009-12-30 01:06:56') + TimeSlot Create (1.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:45:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 00:55:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:00:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:45:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 01:55:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:00:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:45:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 02:55:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:00:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:45:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 03:55:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:00:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:45:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 04:55:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:00:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:45:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 05:55:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:00:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:05:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:10:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:15:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:20:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:25:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:30:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:35:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:40:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:45:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:50:00', '2009-12-30 01:06:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:06:56', NULL, '1975-07-30 06:55:00', '2009-12-30 01:06:56') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:06:56', '1975-07-30', 'Canberra', '2009-12-30 01:06:56') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:06:56' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:06:56) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 85, DB: 28) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:14:19) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:00:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:05:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:10:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:15:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:20:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:25:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:30:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:35:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:40:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:45:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:50:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 01:55:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:00:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:05:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:10:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:15:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:20:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:25:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:30:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:35:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:40:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:45:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:50:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 02:55:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:00:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:05:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:10:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:15:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:20:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:25:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:30:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:35:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:40:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:19', NULL, '1975-07-30 03:45:00', '2009-12-30 01:14:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 07:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 08:55:00', '2009-12-30 01:14:20') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:14:20', '1975-07-30', 'Perth', '2009-12-30 01:14:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 15 + TimeSlot Update (0.4ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 55 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:14:20) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 115ms (View: 105, DB: 28) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-29 23:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 00:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 01:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 02:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 03:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 04:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 05:55:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:00:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:05:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:10:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:15:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:20:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:25:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:30:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:35:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:40:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:45:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:50:00', '2009-12-30 01:14:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:14:20', NULL, '1975-07-30 06:55:00', '2009-12-30 01:14:20') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:14:20', '1975-07-30', 'Canberra', '2009-12-30 01:14:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:20' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 71 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 80 + TimeSlot Update (0.4ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:14:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:14:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 115ms (View: 103, DB: 30) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:15:37) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 07:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 08:55:00', '2009-12-30 01:15:38') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:15:38', '1975-07-30', 'Perth', '2009-12-30 01:15:38') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 13 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:38' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:15:38) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 114ms (View: 104, DB: 29) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-29 23:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 00:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 01:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 02:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 03:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 04:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 05:55:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:00:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:05:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:10:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:15:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:20:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:25:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:30:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:35:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:40:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:45:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:38', NULL, '1975-07-30 06:50:00', '2009-12-30 01:15:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:39', NULL, '1975-07-30 06:55:00', '2009-12-30 01:15:39') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:15:39', '1975-07-30', 'Canberra', '2009-12-30 01:15:39') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:39' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:15:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 114ms (View: 105, DB: 28) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:15:56) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:00:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:05:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:10:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:15:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:20:00', '2009-12-30 01:15:56') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:25:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:30:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:35:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:40:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:45:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:50:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 01:55:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:00:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:05:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:10:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:15:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:20:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:25:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:30:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:35:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:40:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:45:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:50:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 02:55:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 03:00:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 03:05:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 03:10:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 03:15:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 03:20:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:56', NULL, '1975-07-30 03:25:00', '2009-12-30 01:15:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 07:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 08:55:00', '2009-12-30 01:15:57') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:15:57', '1975-07-30', 'Perth', '2009-12-30 01:15:57') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:15:57) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 126ms (View: 116, DB: 31) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-29 23:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 00:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 01:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 02:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 03:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 04:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 05:55:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:00:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:05:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:10:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:15:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:20:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:25:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:30:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:35:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:40:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:45:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:50:00', '2009-12-30 01:15:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:15:57', NULL, '1975-07-30 06:55:00', '2009-12-30 01:15:57') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:15:57', '1975-07-30', 'Canberra', '2009-12-30 01:15:57') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:57' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 72 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:15:58' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:15:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 124ms (View: 113, DB: 31) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:20:19) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:00:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:05:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:10:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:15:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:20:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:25:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:30:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:35:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:40:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:45:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:50:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 01:55:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:00:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:05:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:10:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:15:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:20:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:25:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:30:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:35:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:40:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:45:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:50:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 02:55:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 03:00:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 03:05:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 03:10:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 03:15:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 03:20:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:19', NULL, '1975-07-30 03:25:00', '2009-12-30 01:20:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 07:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 08:55:00', '2009-12-30 01:20:20') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:20:20', '1975-07-30', 'Perth', '2009-12-30 01:20:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 21 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:20:20) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 125ms (View: 115, DB: 28) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-29 23:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 00:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 01:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 02:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 03:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 04:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 05:55:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:00:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:05:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:10:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:15:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:20:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:25:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:30:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:35:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:40:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:45:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:50:00', '2009-12-30 01:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:20', NULL, '1975-07-30 06:55:00', '2009-12-30 01:20:20') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:20:20', '1975-07-30', 'Canberra', '2009-12-30 01:20:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:20' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 32 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 33 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:20:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 125ms (View: 114, DB: 31) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:20:49) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 01:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 02:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 03:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 04:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 05:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 06:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 07:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 08:55:00', '2009-12-30 01:20:50') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:20:50', '1975-07-30', 'Perth', '2009-12-30 01:20:50') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 24 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:50' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:20:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 127ms (View: 116, DB: 31) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:20:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:25:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:30:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:35:00', '2009-12-30 01:20:50') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:40:00', '2009-12-30 01:20:50') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:45:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:50:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-29 23:55:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 00:00:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 00:05:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 00:10:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:50', NULL, '1975-07-30 00:15:00', '2009-12-30 01:20:50') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:20:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:25:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:30:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:35:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:40:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:45:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:50:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 00:55:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:00:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:05:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:10:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:15:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:20:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:25:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:30:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:35:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:40:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:45:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:50:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 01:55:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:00:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:05:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:10:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:15:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:20:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:25:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:30:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:35:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:40:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:45:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:50:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 02:55:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:00:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:05:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:10:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:15:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:20:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:25:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:30:00', '2009-12-30 01:20:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:35:00', '2009-12-30 01:20:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:40:00', '2009-12-30 01:20:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:45:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:50:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 03:55:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:00:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:05:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:10:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:15:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:20:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:25:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:30:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:35:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:40:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:45:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:50:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 04:55:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:00:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:05:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:10:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:15:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:20:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:25:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:30:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:35:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:40:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:45:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:50:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 05:55:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:00:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:05:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:10:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:15:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:20:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:25:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:30:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:35:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:40:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:45:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:50:00', '2009-12-30 01:20:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:20:51', NULL, '1975-07-30 06:55:00', '2009-12-30 01:20:51') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:20:51', '1975-07-30', 'Canberra', '2009-12-30 01:20:51') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 59 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:20:51' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:20:51) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 125ms (View: 114, DB: 31) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:26:10) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:20:00', '2009-12-30 01:26:10') + TimeSlot Create (1.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 01:55:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:20:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 02:55:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:20:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 03:55:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:20:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 04:55:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:20:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 05:55:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:20:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 06:55:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:20:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 07:55:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:00:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:05:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:10:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:15:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:20:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:25:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:30:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:35:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:40:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:45:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:50:00', '2009-12-30 01:26:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:10', NULL, '1975-07-30 08:55:00', '2009-12-30 01:26:10') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:26:10', '1975-07-30', 'Perth', '2009-12-30 01:26:10') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:10' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:26:11) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 143ms (View: 132, DB: 32) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-29 23:55:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 00:55:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 01:55:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 02:55:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 03:55:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 04:55:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 05:55:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:00:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:05:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:10:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:15:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:20:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:25:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:30:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:35:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:40:00', '2009-12-30 01:26:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:45:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:50:00', '2009-12-30 01:26:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:26:11', NULL, '1975-07-30 06:55:00', '2009-12-30 01:26:11') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:26:11', '1975-07-30', 'Canberra', '2009-12-30 01:26:11') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 85 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:26:11' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:26:12) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 144ms (View: 133, DB: 34) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:27:05) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 01:55:00', '2009-12-30 01:27:05') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 02:55:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 03:55:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 04:55:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 05:55:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 06:55:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 07:55:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:00:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:05:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:10:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:15:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:20:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:25:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:30:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:35:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:40:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:45:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:50:00', '2009-12-30 01:27:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:05', NULL, '1975-07-30 08:55:00', '2009-12-30 01:27:05') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:27:05', '1975-07-30', 'Perth', '2009-12-30 01:27:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 8 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 15 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 81 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 88 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 89 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:05' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:27:05) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 129, DB: 35) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-29 23:55:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 00:55:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 01:55:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 02:55:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 03:55:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 04:55:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 05:55:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:00:00', '2009-12-30 01:27:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:05:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:10:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:15:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:20:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:25:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:30:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:35:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:40:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:45:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:50:00', '2009-12-30 01:27:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:06', NULL, '1975-07-30 06:55:00', '2009-12-30 01:27:06') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:27:06', '1975-07-30', 'Canberra', '2009-12-30 01:27:06') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 17 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 52 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 65 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:06' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:27:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 129, DB: 34) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:27:33) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 01:55:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 02:55:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 03:55:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 04:55:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 05:55:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 06:55:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 07:55:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:00:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:05:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:10:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:15:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:20:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:25:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:30:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:35:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:40:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:45:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:50:00', '2009-12-30 01:27:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:34', NULL, '1975-07-30 08:55:00', '2009-12-30 01:27:34') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:27:34', '1975-07-30', 'Perth', '2009-12-30 01:27:34') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 17 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 38 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 65 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:34' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:27:34) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 142ms (View: 130, DB: 35) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-29 23:55:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 00:55:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 01:55:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 02:55:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 03:55:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 04:55:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 05:55:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:00:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:05:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:10:00', '2009-12-30 01:27:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:15:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:20:00', '2009-12-30 01:27:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:25:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:30:00', '2009-12-30 01:27:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:35:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:40:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:45:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:50:00', '2009-12-30 01:27:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:27:35', NULL, '1975-07-30 06:55:00', '2009-12-30 01:27:35') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:27:35', '1975-07-30', 'Canberra', '2009-12-30 01:27:35') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 6 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 30 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 80 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:27:35' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:27:35) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 252ms (View: 240, DB: 35) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:29:30) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:35:00', '2009-12-30 01:29:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:40:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:45:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:50:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 01:55:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:35:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:40:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:45:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:50:00', '2009-12-30 01:29:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 02:55:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:35:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:40:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:45:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:50:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 03:55:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:35:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:40:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:45:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:50:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 04:55:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:35:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:40:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:45:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:50:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 05:55:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:35:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:40:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:45:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:50:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 06:55:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:35:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:40:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:45:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:50:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 07:55:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 08:00:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 08:05:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 08:10:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 08:15:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 08:20:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 08:25:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:30', NULL, '1975-07-30 08:30:00', '2009-12-30 01:29:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 08:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 08:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 08:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 08:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 08:55:00', '2009-12-30 01:29:31') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:29:31', '1975-07-30', 'Perth', '2009-12-30 01:29:31') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 58 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 85 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 95 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:29:31) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 145ms (View: 133, DB: 35) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-29 23:55:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 00:55:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 01:55:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 02:55:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 03:55:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 04:55:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 05:55:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:00:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:05:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:10:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:15:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:20:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:25:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:30:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:35:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:40:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:45:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:50:00', '2009-12-30 01:29:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:29:31', NULL, '1975-07-30 06:55:00', '2009-12-30 01:29:31') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:29:31', '1975-07-30', 'Canberra', '2009-12-30 01:29:31') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:31' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 37 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 57 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 58 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 75 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 86 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:29:32' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:29:32) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 141ms (View: 129, DB: 36) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:30:31) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:00:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:05:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:10:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:15:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:20:00', '2009-12-30 01:30:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:25:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:30:00', '2009-12-30 01:30:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:35:00', '2009-12-30 01:30:31') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:40:00', '2009-12-30 01:30:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:45:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:50:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 01:55:00', '2009-12-30 01:30:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:00:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:05:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:10:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:15:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:20:00', '2009-12-30 01:30:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:25:00', '2009-12-30 01:30:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:30:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:35:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:40:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:31', NULL, '1975-07-30 02:45:00', '2009-12-30 01:30:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 02:50:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 02:55:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:00:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:05:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:10:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:15:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:20:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:25:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:30:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:35:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:40:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:45:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:50:00', '2009-12-30 01:30:32') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 03:55:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:00:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:05:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:10:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:15:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:20:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:25:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:30:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:35:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:40:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:45:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:50:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 04:55:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:00:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:05:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:10:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:15:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:20:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:25:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:30:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:35:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:40:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:45:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:50:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 05:55:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:00:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:05:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:10:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:15:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:20:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:25:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:30:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:35:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:40:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:45:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:50:00', '2009-12-30 01:30:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 06:55:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:00:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:05:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:10:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:15:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:20:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:25:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:30:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:35:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:40:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:45:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:50:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 07:55:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:00:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:05:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:10:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:15:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:20:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:25:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:30:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:35:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:40:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:45:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:50:00', '2009-12-30 01:30:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:32', NULL, '1975-07-30 08:55:00', '2009-12-30 01:30:32') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:30:32', '1975-07-30', 'Perth', '2009-12-30 01:30:32') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 4 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 17 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 21 + TimeSlot Update (0.5ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 65 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:32' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:30:32) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 143ms (View: 130, DB: 37) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-29 23:55:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 00:55:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 01:55:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 02:55:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 03:55:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 04:55:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 05:55:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:00:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:05:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:10:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:15:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:20:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:25:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:30:00', '2009-12-30 01:30:33') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:35:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:40:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:45:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:50:00', '2009-12-30 01:30:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:30:33', NULL, '1975-07-30 06:55:00', '2009-12-30 01:30:33') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:30:33', '1975-07-30', 'Canberra', '2009-12-30 01:30:33') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 9 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 31 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 42 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 46 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 63 + TimeSlot Update (0.5ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 91 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 92 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:30:33' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:30:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 284ms (View: 270, DB: 40) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:32:03) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 01:55:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 02:55:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 03:55:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 04:55:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 05:55:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 06:55:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 07:55:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:00:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:05:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:10:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:15:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:20:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:25:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:30:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:35:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:40:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:45:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:50:00', '2009-12-30 01:32:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:03', NULL, '1975-07-30 08:55:00', '2009-12-30 01:32:03') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:32:03', '1975-07-30', 'Perth', '2009-12-30 01:32:03') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 6 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 15 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 57 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 64 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 66 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 82 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:03' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:32:03) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 149ms (View: 137, DB: 34) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:35:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:40:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:45:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:50:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-29 23:55:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:35:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:40:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:45:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:50:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 00:55:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:35:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:40:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:45:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:50:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 01:55:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:35:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:40:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:45:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:50:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 02:55:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:35:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:40:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:45:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:50:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 03:55:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:35:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:40:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:45:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:50:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 04:55:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:35:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:40:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:45:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:50:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 05:55:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 06:00:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 06:05:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 06:10:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 06:15:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 06:20:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 06:25:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:04', NULL, '1975-07-30 06:30:00', '2009-12-30 01:32:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:05', NULL, '1975-07-30 06:35:00', '2009-12-30 01:32:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:05', NULL, '1975-07-30 06:40:00', '2009-12-30 01:32:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:05', NULL, '1975-07-30 06:45:00', '2009-12-30 01:32:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:05', NULL, '1975-07-30 06:50:00', '2009-12-30 01:32:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:32:05', NULL, '1975-07-30 06:55:00', '2009-12-30 01:32:05') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:32:05', '1975-07-30', 'Canberra', '2009-12-30 01:32:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 1 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 2 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 11 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 19 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 28 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 30 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 31 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 32 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 33 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 34 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 80 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 90 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:32:05' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:32:05) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 286ms (View: 272, DB: 44) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:34:56) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 01:55:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 02:55:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 03:55:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 04:55:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 05:55:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 06:55:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 07:55:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:00:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:05:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:10:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:15:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:20:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:25:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:30:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:35:00', '2009-12-30 01:34:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:40:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:45:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:50:00', '2009-12-30 01:34:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:57', NULL, '1975-07-30 08:55:00', '2009-12-30 01:34:57') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:34:57', '1975-07-30', 'Perth', '2009-12-30 01:34:57') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 6 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 9 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 15 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 19 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 21 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 37 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 40 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 66 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 81 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 92 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:57' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:34:57) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 161ms (View: 147, DB: 41) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-29 23:55:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 00:55:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 01:55:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 02:55:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 03:55:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 04:55:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 05:55:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:00:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:05:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:10:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:15:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:20:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:25:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:30:00', '2009-12-30 01:34:58') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:35:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:40:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:45:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:50:00', '2009-12-30 01:34:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:34:58', NULL, '1975-07-30 06:55:00', '2009-12-30 01:34:58') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:34:58', '1975-07-30', 'Canberra', '2009-12-30 01:34:58') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 8 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 22 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 23 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 28 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 48 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 53 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 69 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 74 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 78 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:34:58' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:34:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (13.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 291ms (View: 277, DB: 41) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:36:44) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 01:55:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 02:55:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 03:55:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 04:55:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 05:55:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 06:55:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 07:55:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:00:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:05:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:10:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:15:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:20:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:25:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:30:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:35:00', '2009-12-30 01:36:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:40:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:45:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:50:00', '2009-12-30 01:36:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:44', NULL, '1975-07-30 08:55:00', '2009-12-30 01:36:44') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:36:44', '1975-07-30', 'Perth', '2009-12-30 01:36:44') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 20 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 21 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 33 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 37 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 41 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 45 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:44' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 70 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:36:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 161ms (View: 147, DB: 39) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:35:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:40:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:45:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:50:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-29 23:55:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:35:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:40:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:45:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:50:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 00:55:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:35:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:40:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:45:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:50:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 01:55:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:35:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:40:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:45:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:50:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 02:55:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:35:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:40:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:45:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:50:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 03:55:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:35:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:40:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:45:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:50:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 04:55:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:35:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:40:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:45:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:50:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 05:55:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 06:00:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 06:05:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 06:10:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 06:15:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 06:20:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 06:25:00', '2009-12-30 01:36:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:45', NULL, '1975-07-30 06:30:00', '2009-12-30 01:36:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:46', NULL, '1975-07-30 06:35:00', '2009-12-30 01:36:46') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:46', NULL, '1975-07-30 06:40:00', '2009-12-30 01:36:46') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:46', NULL, '1975-07-30 06:45:00', '2009-12-30 01:36:46') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:46', NULL, '1975-07-30 06:50:00', '2009-12-30 01:36:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:36:46', NULL, '1975-07-30 06:55:00', '2009-12-30 01:36:46') + DayOfAction Create (0.3ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:36:46', '1975-07-30', 'Canberra', '2009-12-30 01:36:46') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 1 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 4 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 6 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 11 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 13 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 14 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 30 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 34 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 37 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 55 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 62 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 68 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 86 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 88 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:36:46' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:36:46) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 284ms (View: 269, DB: 41) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:37:43) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 01:55:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 02:55:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 03:55:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 04:55:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 05:55:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 06:55:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 07:55:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:00:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:05:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:10:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:15:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:20:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:25:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:30:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:35:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:40:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:45:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:50:00', '2009-12-30 01:37:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:43', NULL, '1975-07-30 08:55:00', '2009-12-30 01:37:43') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:37:43', '1975-07-30', 'Perth', '2009-12-30 01:37:43') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:43' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 23 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 40 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 57 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 59 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 70 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 72 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 73 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 74 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:44' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:37:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (11.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 163ms (View: 150, DB: 39) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:00:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:05:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:10:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:15:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:20:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:25:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:30:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:35:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:40:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:45:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:50:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-29 23:55:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:00:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:05:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:10:00', '2009-12-30 01:37:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:15:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:20:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:25:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:30:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:35:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:40:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:45:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:44', NULL, '1975-07-30 00:50:00', '2009-12-30 01:37:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 00:55:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:00:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:05:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:10:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:15:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:20:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:25:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:30:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:35:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:40:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:45:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:50:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 01:55:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:00:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:05:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:10:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:15:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:20:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:25:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:30:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:35:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:40:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:45:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:50:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 02:55:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:00:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:05:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:10:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:15:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:20:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:25:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:30:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:35:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:40:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:45:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:50:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 03:55:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:00:00', '2009-12-30 01:37:45') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:05:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:10:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:15:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:20:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:25:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:30:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:35:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:40:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:45:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:50:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 04:55:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:00:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:05:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:10:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:15:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:20:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:25:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:30:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:35:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:40:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:45:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:50:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 05:55:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:00:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:05:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:10:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:15:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:20:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:25:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:30:00', '2009-12-30 01:37:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:35:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:40:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:45:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:50:00', '2009-12-30 01:37:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:37:45', NULL, '1975-07-30 06:55:00', '2009-12-30 01:37:45') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:37:45', '1975-07-30', 'Canberra', '2009-12-30 01:37:45') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 2 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 16 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 28 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 37 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 54 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 71 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 72 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:37:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:37:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 281ms (View: 267, DB: 40) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:38:38) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.7ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:00:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:05:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:10:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:15:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:20:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:25:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:30:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:35:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:40:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:45:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:50:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 01:55:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:00:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:05:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:10:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:15:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:20:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:25:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:30:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:35:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:40:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:45:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:50:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 02:55:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:00:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:05:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:10:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:15:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:20:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:25:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:30:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:35:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:40:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:45:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:50:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 03:55:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:00:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:05:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:10:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:15:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:20:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:25:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:30:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:35:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:40:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:45:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:50:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 04:55:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:00:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:05:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:10:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:15:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:20:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:25:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:30:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:35:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:40:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:45:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:50:00', '2009-12-30 01:38:38') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 05:55:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:00:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:05:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:10:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:15:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:20:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:25:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:30:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:35:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:40:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:45:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:50:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 06:55:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 07:00:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 07:05:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 07:10:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 07:15:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 07:20:00', '2009-12-30 01:38:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:38', NULL, '1975-07-30 07:25:00', '2009-12-30 01:38:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 07:30:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 07:35:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 07:40:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 07:45:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 07:50:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 07:55:00', '2009-12-30 01:38:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:00:00', '2009-12-30 01:38:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:05:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:10:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:15:00', '2009-12-30 01:38:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:20:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:25:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:30:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:35:00', '2009-12-30 01:38:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:40:00', '2009-12-30 01:38:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:45:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:50:00', '2009-12-30 01:38:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:39', NULL, '1975-07-30 08:55:00', '2009-12-30 01:38:39') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:38:39', '1975-07-30', 'Perth', '2009-12-30 01:38:39') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 4 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 11 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 21 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 22 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 23 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 26 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 27 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 31 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 32 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 33 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 37 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 38 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 50 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 52 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 74 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:39' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:38:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (12.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 163ms (View: 150, DB: 41) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-29 23:55:00', '2009-12-30 01:38:40') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 00:55:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 01:55:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 02:55:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 03:55:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 04:55:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 05:55:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:00:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:05:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:10:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:15:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:20:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:25:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:30:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:35:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:40:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:45:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:50:00', '2009-12-30 01:38:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:38:40', NULL, '1975-07-30 06:55:00', '2009-12-30 01:38:40') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:38:40', '1975-07-30', 'Canberra', '2009-12-30 01:38:40') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 1 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 2 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 3 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 4 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 5 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 6 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 7 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 8 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 9 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 10 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 11 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 12 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 13 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 16 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 17 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 19 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 24 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 28 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 30 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 31 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 34 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 41 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 42 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 43 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 45 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 46 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 47 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 48 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 49 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 50 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 51 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 53 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 54 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 55 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 57 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 62 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 67 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 69 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 70 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 71 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 73 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 74 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 75 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 78 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 82 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 83 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 84 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 85 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 86 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 90 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 91 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 94 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 95 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:38:40' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:38:40) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (13.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 334ms (View: 318, DB: 47) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:43:42) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:00:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:05:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:10:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:15:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:20:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:25:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:30:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:35:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:40:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:45:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:50:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 01:55:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:00:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:05:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:10:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:15:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:20:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:25:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:30:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:35:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:40:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:45:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:50:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 02:55:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 03:00:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:42', NULL, '1975-07-30 03:05:00', '2009-12-30 01:43:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 07:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 08:55:00', '2009-12-30 01:43:43') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:43:43', '1975-07-30', 'Perth', '2009-12-30 01:43:43') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 35 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:43:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 97ms (View: 89, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-29 23:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 00:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 01:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 02:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 03:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 04:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 05:55:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:00:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:05:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:10:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:15:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:20:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:25:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:30:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:35:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:40:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:45:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:50:00', '2009-12-30 01:43:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 01:43:43', NULL, '1975-07-30 06:55:00', '2009-12-30 01:43:43') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 01:43:43', '1975-07-30', 'Canberra', '2009-12-30 01:43:43') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:43' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 01:43:44' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:43:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 181ms (View: 172, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /days_of_action/1 with {"commit"=>"Register", "slot"=>{"email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing DaysOfActionController#1 (for 127.0.0.1 at 2009-12-30 12:43:44) [POST] + Parameters: {"commit"=>"Register", "slot"=>{"email_address"=>"foo@bar.com"}} + + +Processing ApplicationController#1 (for 127.0.0.1 at 2009-12-30 12:43:44) [POST] + Parameters: {"commit"=>"Register", "slot"=>{"email_address"=>"foo@bar.com"}} +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:27:44) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 01:55:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 02:55:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 03:55:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 04:55:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 05:55:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 06:55:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 07:55:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:00:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:05:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:10:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:15:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:20:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:25:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:30:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:35:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:40:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:45:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:50:00', '2009-12-30 02:27:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:44', NULL, '1975-07-30 08:55:00', '2009-12-30 02:27:44') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:27:44', '1975-07-30', 'Perth', '2009-12-30 02:27:44') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:44' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:27:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 123ms (View: 114, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-29 23:55:00', '2009-12-30 02:27:45') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 00:55:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 01:55:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 02:55:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 03:55:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 04:55:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 05:55:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:00:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:05:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:10:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:15:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:20:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:25:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:30:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:35:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:40:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:45:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:50:00', '2009-12-30 02:27:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:27:45', NULL, '1975-07-30 06:55:00', '2009-12-30 02:27:45') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:27:45', '1975-07-30', 'Canberra', '2009-12-30 02:27:45') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 39 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:27:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:27:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 117ms (View: 109, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:28:43) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 07:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 08:55:00', '2009-12-30 02:28:44') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:28:44', '1975-07-30', 'Perth', '2009-12-30 02:28:44') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 27 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:44' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:28:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 113, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-29 23:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 00:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 01:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 02:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 03:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 04:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:30:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:35:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:40:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:45:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:50:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 05:55:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:00:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:05:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:10:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:15:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:20:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:44', NULL, '1975-07-30 06:25:00', '2009-12-30 02:28:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:45', NULL, '1975-07-30 06:30:00', '2009-12-30 02:28:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:45', NULL, '1975-07-30 06:35:00', '2009-12-30 02:28:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:45', NULL, '1975-07-30 06:40:00', '2009-12-30 02:28:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:45', NULL, '1975-07-30 06:45:00', '2009-12-30 02:28:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:45', NULL, '1975-07-30 06:50:00', '2009-12-30 02:28:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:28:45', NULL, '1975-07-30 06:55:00', '2009-12-30 02:28:45') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:28:45', '1975-07-30', 'Canberra', '2009-12-30 02:28:45') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:28:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:28:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 117ms (View: 109, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-30 13:28:45) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:29:52) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 01:55:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 02:55:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 03:55:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 04:55:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 05:55:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 06:55:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 07:55:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:00:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:05:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:10:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:15:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:20:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:25:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:30:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:35:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:40:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:45:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:50:00', '2009-12-30 02:29:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:52', NULL, '1975-07-30 08:55:00', '2009-12-30 02:29:52') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:29:52', '1975-07-30', 'Perth', '2009-12-30 02:29:52') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 25 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:52' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:29:53) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 125ms (View: 116, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-29 23:55:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 00:55:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 01:55:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 02:55:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 03:55:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 04:55:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 05:55:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:00:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:05:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:10:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:15:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:20:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:25:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:30:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:35:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:40:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:45:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:50:00', '2009-12-30 02:29:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:29:53', NULL, '1975-07-30 06:55:00', '2009-12-30 02:29:53') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:29:53', '1975-07-30', 'Canberra', '2009-12-30 02:29:53') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:29:53' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:29:53) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 116ms (View: 108, DB: 23) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:29:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-30 13:29:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:44:52) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 01:55:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 02:55:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 03:55:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 04:55:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 05:55:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 06:55:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 07:55:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:00:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:05:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:10:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:15:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:20:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:25:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:30:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:35:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:40:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:45:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:50:00', '2009-12-30 02:44:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:52', NULL, '1975-07-30 08:55:00', '2009-12-30 02:44:52') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:44:52', '1975-07-30', 'Perth', '2009-12-30 02:44:52') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 24 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:52' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:44:52) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 119ms (View: 110, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-29 23:55:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 00:55:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 01:55:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 02:55:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 03:55:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 04:55:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 05:55:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:00:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:05:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:10:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:15:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:20:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:25:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:30:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:35:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:40:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:45:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:50:00', '2009-12-30 02:44:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:44:53', NULL, '1975-07-30 06:55:00', '2009-12-30 02:44:53') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:44:53', '1975-07-30', 'Canberra', '2009-12-30 02:44:53') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 41 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:44:53' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:44:53) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 116ms (View: 108, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:44:53) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-30 13:44:53) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:46:19) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 01:55:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 02:55:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 03:55:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 04:55:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 05:55:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 06:55:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 07:55:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:00:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:05:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:10:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:15:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:20:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:25:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:30:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:35:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:40:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:45:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:50:00', '2009-12-30 02:46:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:19', NULL, '1975-07-30 08:55:00', '2009-12-30 02:46:19') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:46:19', '1975-07-30', 'Perth', '2009-12-30 02:46:19') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:19' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:46:20) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 201ms (View: 192, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:25:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-29 23:55:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:25:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 00:55:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:25:00', '2009-12-30 02:46:20') + TimeSlot Create (69.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 01:55:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:25:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 02:55:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:25:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 03:55:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:25:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 04:55:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:25:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 05:55:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:00:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:05:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:10:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:15:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:20:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:25:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:30:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:35:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:40:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:45:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:50:00', '2009-12-30 02:46:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:46:20', NULL, '1975-07-30 06:55:00', '2009-12-30 02:46:20') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:46:20', '1975-07-30', 'Canberra', '2009-12-30 02:46:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:46:20' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:46:20) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 115ms (View: 106, DB: 93) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:46:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:46:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 114ms (View: 106, DB: 7) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:50:21) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 01:55:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 02:55:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 03:55:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 04:55:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 05:55:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 06:55:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 07:55:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:00:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:05:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:10:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:15:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:20:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:25:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:30:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:35:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:40:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:45:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:50:00', '2009-12-30 02:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:21', NULL, '1975-07-30 08:55:00', '2009-12-30 02:50:21') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:50:21', '1975-07-30', 'Perth', '2009-12-30 02:50:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 89 + [4;35;1mTimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:50:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 200ms (View: 191, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:25:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-29 23:55:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:25:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 00:55:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:25:00', '2009-12-30 02:50:22') + TimeSlot Create (69.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 01:55:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:25:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 02:55:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:25:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 03:55:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:25:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 04:55:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:25:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 05:55:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:00:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:05:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:10:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:15:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:20:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:25:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:30:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:35:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:40:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:45:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:50:00', '2009-12-30 02:50:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 02:50:22', NULL, '1975-07-30 06:55:00', '2009-12-30 02:50:22') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 02:50:22', '1975-07-30', 'Canberra', '2009-12-30 02:50:22') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 02:50:22' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:50:22) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 117ms (View: 108, DB: 95) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:50:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:50:23) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 114ms (View: 106, DB: 7) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:12:09) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.7ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 01:55:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 02:55:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 03:55:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 04:55:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 05:55:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 06:55:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 07:55:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:00:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:05:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:10:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:15:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:20:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:25:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:30:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:35:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:40:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:45:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:50:00', '2009-12-30 03:12:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:09', NULL, '1975-07-30 08:55:00', '2009-12-30 03:12:09') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:12:09', '1975-07-30', 'Perth', '2009-12-30 03:12:09') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:09' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:12:09) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 280ms (View: 271, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:45:00', '2009-12-30 03:12:10') + TimeSlot Create (1.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-29 23:55:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:45:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 00:55:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:45:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 01:55:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:45:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 02:55:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:45:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 03:55:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:45:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 04:55:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:45:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 05:55:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:00:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:05:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:10:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:15:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:20:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:25:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:30:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:35:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:40:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:45:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:50:00', '2009-12-30 03:12:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:12:10', NULL, '1975-07-30 06:55:00', '2009-12-30 03:12:10') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:12:10', '1975-07-30', 'Canberra', '2009-12-30 03:12:10') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:12:10' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:12:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 116ms (View: 108, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:12:11) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 4ms (DB: 1) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:12:11) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 114ms (View: 106, DB: 7) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:20:38) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 01:55:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 02:55:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 03:55:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 04:55:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 05:55:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 06:55:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 07:55:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:00:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:05:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:10:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:15:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:20:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:25:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:30:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:35:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:40:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:45:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:50:00', '2009-12-30 03:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:38', NULL, '1975-07-30 08:55:00', '2009-12-30 03:20:38') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:20:38', '1975-07-30', 'Perth', '2009-12-30 03:20:38') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:38' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:20:38) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 281ms (View: 272, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-29 23:55:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 00:55:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 01:55:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 02:55:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 03:55:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 04:55:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 05:55:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:00:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:05:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:10:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:15:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:20:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:25:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:30:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:35:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:40:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:45:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:50:00', '2009-12-30 03:20:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:20:39', NULL, '1975-07-30 06:55:00', '2009-12-30 03:20:39') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:20:39', '1975-07-30', 'Canberra', '2009-12-30 03:20:39') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:20:39' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:20:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 115ms (View: 107, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:20:39) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:20:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 114ms (View: 106, DB: 7) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:21:20) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:00:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:05:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:10:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:15:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:20:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:25:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:30:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:35:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:40:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:45:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:50:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 01:55:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:00:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:05:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:10:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:15:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:20:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:25:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:30:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:35:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:40:00', '2009-12-30 03:21:20') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:45:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:50:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 02:55:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:00:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:05:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:10:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:15:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:20:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:25:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:30:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:35:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:40:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:45:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:50:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 03:55:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:00:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:05:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:10:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:15:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:20:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:25:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:30:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:35:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:40:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:45:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:20', NULL, '1975-07-30 04:50:00', '2009-12-30 03:21:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 06:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 07:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 08:55:00', '2009-12-30 03:21:21') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:21:21', '1975-07-30', 'Perth', '2009-12-30 03:21:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 58 + TimeSlot Update (0.7ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:21:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 281ms (View: 273, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-29 23:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 00:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 01:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 02:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 03:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:20:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:25:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:30:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:35:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:40:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:45:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:50:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 04:55:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:00:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:05:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:10:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:21', NULL, '1975-07-30 05:15:00', '2009-12-30 03:21:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:20:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:25:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:30:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:35:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:40:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:45:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:50:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 05:55:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:00:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:05:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:10:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:15:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:20:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:25:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:30:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:35:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:40:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:45:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:50:00', '2009-12-30 03:21:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:21:22', NULL, '1975-07-30 06:55:00', '2009-12-30 03:21:22') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:21:22', '1975-07-30', 'Canberra', '2009-12-30 03:21:22') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 86 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:21:22' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:21:22) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:21:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 5ms (DB: 1) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:21:22) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 117ms (View: 109, DB: 7) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:58:54) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 01:55:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 02:55:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 03:55:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 04:55:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 05:55:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 06:55:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 07:55:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:00:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:05:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:10:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:15:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:20:00', '2009-12-30 03:58:54') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:25:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:30:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:35:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:40:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:45:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:50:00', '2009-12-30 03:58:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:54', NULL, '1975-07-30 08:55:00', '2009-12-30 03:58:54') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:58:54', '1975-07-30', 'Perth', '2009-12-30 03:58:54') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 10 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:54' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:58:54) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 287ms (View: 279, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-29 23:55:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 00:55:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 01:55:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 02:55:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 03:55:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 04:55:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 05:55:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:00:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:05:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:10:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:15:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:20:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:25:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:30:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:35:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:40:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:45:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:50:00', '2009-12-30 03:58:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-30 03:58:55', NULL, '1975-07-30 06:55:00', '2009-12-30 03:58:55') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 03:58:55', '1975-07-30', 'Canberra', '2009-12-30 03:58:55') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 12 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 19 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 24 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 74 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 77 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 89 + TimeSlot Update (0.4ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 03:58:55' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:58:55) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (10.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 139ms (View: 127, DB: 30) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:58:56) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:58:56) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 113, DB: 7) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:36:09) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 01:55:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 02:55:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 03:55:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 04:55:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 05:55:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 06:55:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 07:55:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:00:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:05:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:10:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:15:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:20:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:25:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:30:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:35:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:40:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:45:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:50:00', NULL, '2009-12-30 04:36:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:09', NULL, '1975-07-30 08:55:00', NULL, '2009-12-30 04:36:09') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 04:36:09', '1975-07-30', 'Perth', '2009-12-30 04:36:09') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:09' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:36:09) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 285ms (View: 276, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-29 23:55:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 00:55:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 01:55:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 02:55:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 03:55:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 04:55:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 05:55:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:00:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:05:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:10:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:15:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:20:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:25:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:30:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:35:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:40:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:45:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:50:00', NULL, '2009-12-30 04:36:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:36:10', NULL, '1975-07-30 06:55:00', NULL, '2009-12-30 04:36:10') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 04:36:10', '1975-07-30', 'Canberra', '2009-12-30 04:36:10') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:36:10' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:36:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (8.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 124ms (View: 114, DB: 26) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 15:36:11) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-30 04:36:11' WHERE "id" = 4 + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:36:11) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 16:40:31) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 01:55:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 02:55:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 03:55:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 04:55:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 05:55:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 06:55:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 07:55:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:00:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:05:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:10:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:15:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:20:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:25:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:30:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:35:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:40:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:45:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:50:00', NULL, '2009-12-30 05:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:31', NULL, '1975-07-30 08:55:00', NULL, '2009-12-30 05:40:31') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 05:40:31', '1975-07-30', 'Perth', '2009-12-30 05:40:31') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:31' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:31' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:31' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:31' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:31' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:31' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:31' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 16:40:32) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 286ms (View: 277, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-29 23:55:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 00:55:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 01:55:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 02:55:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 03:55:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 04:55:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 05:55:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:00:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:05:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:10:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:15:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:20:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:25:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:30:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:35:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:40:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:45:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:50:00', NULL, '2009-12-30 05:40:32') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 05:40:32', NULL, '1975-07-30 06:55:00', NULL, '2009-12-30 05:40:32') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 05:40:32', '1975-07-30', 'Canberra', '2009-12-30 05:40:32') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:32' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 16:40:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 24) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 16:40:33) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-30 05:40:33' WHERE "id" = 4 + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 16:40:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 111, DB: 8) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:36:15) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 01:55:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 02:55:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 03:55:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 04:55:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 05:55:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 06:55:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 07:55:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:00:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:05:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:10:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:15:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:20:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:25:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:30:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:35:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:40:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:45:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:50:00', NULL, '2009-12-30 06:36:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:15', NULL, '1975-07-30 08:55:00', NULL, '2009-12-30 06:36:15') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 06:36:15', '1975-07-30', 'Perth', '2009-12-30 06:36:15') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 36 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:15' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:36:15) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 289ms (View: 280, DB: 25) | 200 OK [http://www.example.com/days_of_action/1] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-29 23:55:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 00:55:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 01:55:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 02:55:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 03:55:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 04:55:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 05:55:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:00:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:05:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:10:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:15:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:20:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:25:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:30:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:35:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:40:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:45:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:50:00', NULL, '2009-12-30 06:36:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:16', NULL, '1975-07-30 06:55:00', NULL, '2009-12-30 06:36:16') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 06:36:16', '1975-07-30', 'Canberra', '2009-12-30 06:36:16') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:36:16) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (9.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 124ms (View: 113, DB: 27) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: POST /registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:36:16) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-30 06:36:16' WHERE "id" = 4 + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://www.example.com/days_of_action/1 +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1 with {} and HTTP headers {"HTTP_REFERER"=>"/registrations"} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:36:16) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 122ms (View: 113, DB: 8) | 200 OK [http://www.example.com/days_of_action/1] +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 13:11:48) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) +REQUESTING PAGE: GET /days_of_action/-1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 13:18:53) [GET] + Parameters: {"id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:18:53') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:18:53', '1975-07-30', 'Perth', '2009-12-31 02:18:53') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 13:18:53) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-31 13:18:53) [GET] + Parameters: {"id"=>"1"} + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:18:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:18:53', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:18:53') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:18:53', '1975-07-30', 'Canberra', '2009-12-31 02:18:53') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:18:54' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1 with {} and HTTP headers {} + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 13:18:54) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + + +Processing ApplicationController#show (for 127.0.0.1 at 2009-12-31 13:18:54) [GET] + Parameters: {"id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:17) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.7ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (1.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:17', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:22:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:22:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:22:18', '1975-07-30', 'Perth', '2009-12-31 02:22:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:18' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 278ms (View: 191, DB: 25) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:18', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:22:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:22:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:19', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:22:19') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:22:19', '1975-07-30', 'Canberra', '2009-12-31 02:22:19') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:22:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:22:19' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 123ms (View: 113, DB: 9) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:48) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:22:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:48', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:22:48') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:22:48', '1975-07-30', 'Perth', '2009-12-31 02:22:48') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:48' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:48' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:48' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:48' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:48' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:49) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 277ms (View: 191, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:22:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:22:49', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:22:49') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:22:49', '1975-07-30', 'Canberra', '2009-12-31 02:22:49') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:49' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:50) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:22:50) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:22:50' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:22:50) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:35', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:24:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:24:36') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:24:36', '1975-07-30', 'Canberra', '2009-12-31 02:24:36') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:36' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:24:36) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 207ms (View: 117, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:24:36) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:36', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:24:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:24:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:24:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:24:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:24:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:24:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:24:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:24:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:24:37', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:24:37') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:24:37', '1975-07-30', 'Perth', '2009-12-31 02:24:37') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:24:37' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:24:37) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 202ms (View: 194, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:07', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:25:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:25:08') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:25:08', '1975-07-30', 'Canberra', '2009-12-31 02:25:08') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:25:08) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 204ms (View: 116, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:25:08) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:25:08' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:25:08) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:25:08) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:08', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:25:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:25:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:09', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:25:09') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:25:09', '1975-07-30', 'Perth', '2009-12-31 02:25:09') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:25:09' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:25:09) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 111, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:33:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:17', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:33:17') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:33:17', '1975-07-30', 'Canberra', '2009-12-31 02:33:17') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 63 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:33:17) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 206ms (View: 195, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:33:17) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:33:17' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:33:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:33:18) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:33:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:18', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:33:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:33:18', '1975-07-30', 'Perth', '2009-12-31 02:33:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 35 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:33:18' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:33:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (9.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 122ms (View: 112, DB: 26) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:38:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:23', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:38:23') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:38:23', '1975-07-30', 'Canberra', '2009-12-31 02:38:23') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 20 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:23' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:38:23) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 206ms (View: 194, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:38:24) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:38:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:38:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:24', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:38:24') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:38:24', '1975-07-30', 'Canberra', '2009-12-31 02:38:24') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:24' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:38:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 113, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:38:25) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:38:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:38:25', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:38:25') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:38:25', '1975-07-30', 'Perth', '2009-12-31 02:38:25') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:38:25' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:38:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 119ms (View: 111, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:40:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:29', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:40:29') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:40:29', '1975-07-30', 'Canberra', '2009-12-31 02:40:29') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 67 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:40:29) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 206ms (View: 194, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:40:29) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:40:29' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:40:29) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:40:30') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:40:30', '1975-07-30', 'Canberra', '2009-12-31 02:40:30') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:40:30) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:40:30) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = '', "updated_at" = '2009-12-31 02:40:30' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:40:30) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:40:30) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:30', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:40:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:40:31') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:40:31', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:40:31') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:40:31', '1975-07-30', 'Perth', '2009-12-31 02:40:31') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:40:31' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:40:31) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 25) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:42:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:56', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:42:56') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:42:56', '1975-07-30', 'Canberra', '2009-12-31 02:42:56') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:42:56) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 205ms (View: 194, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:42:56) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:42:56' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:42:56) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:42:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:57', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:42:57') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:42:57', '1975-07-30', 'Canberra', '2009-12-31 02:42:57') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:42:57) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 122ms (View: 113, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:42:57) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = '', "updated_at" = '2009-12-31 02:42:57' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:42:57) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:42:58) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:42:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:42:58', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:42:58') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:42:58', '1975-07-30', 'Perth', '2009-12-31 02:42:58') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:42:58' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:42:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 111, DB: 25) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:02', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:45:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:45:03') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:45:03', '1975-07-30', 'Canberra', '2009-12-31 02:45:03') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:45:03) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 206ms (View: 195, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:45:03) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 02:45:03' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:45:03) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:00:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:05:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:10:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:15:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:03', NULL, '1975-07-29 23:20:00', NULL, '2009-12-31 02:45:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-29 23:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-29 23:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-29 23:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-29 23:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-29 23:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-29 23:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-29 23:55:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 00:55:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:45:04') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:45:04', '1975-07-30', 'Canberra', '2009-12-31 02:45:04') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:45:04) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 112, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:45:04) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "email_address" = '', "updated_at" = '2009-12-31 02:45:04' WHERE "id" = 4 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:45:04) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 8) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:45:04) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:00:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:05:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:10:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:15:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:20:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:04', NULL, '1975-07-30 01:25:00', NULL, '2009-12-31 02:45:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 01:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 01:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 01:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 01:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 01:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 01:55:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:00:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:05:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:10:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:15:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:20:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:25:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 02:55:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:00:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:05:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:10:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:15:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:20:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:25:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 03:55:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:00:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:05:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:10:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:15:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:20:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:25:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 04:55:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:00:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:05:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:10:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:15:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:20:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:25:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 05:55:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:00:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:05:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:10:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:15:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:20:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:25:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 06:55:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:00:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:05:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:10:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:15:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:20:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:25:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 07:55:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:00:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:05:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:10:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:15:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:20:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:25:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:30:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:35:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:40:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:45:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:50:00', NULL, '2009-12-31 02:45:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:45:05', NULL, '1975-07-30 08:55:00', NULL, '2009-12-31 02:45:05') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:45:05', '1975-07-30', 'Perth', '2009-12-31 02:45:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:45:05' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:45:05) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 111, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-29 23:55:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 00:55:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 01:55:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 02:55:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 03:55:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 04:55:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 05:55:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:00:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:05:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:10:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:15:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:20:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:25:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:30:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:35:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:40:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:45:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:50:00', '2009-12-31 02:58:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:16', NULL, '1975-07-30 06:55:00', '2009-12-31 02:58:16') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:58:16', '1975-07-30', 'Canberra', '2009-12-31 02:58:16') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:16' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:58:17) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 286ms (View: 275, DB: 23) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:58:17) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 13:58:17) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-29 23:55:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 00:55:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 01:55:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 02:55:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 03:55:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 04:55:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 05:55:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:00:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:05:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:10:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:15:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:20:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:25:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:30:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:35:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:40:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:45:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:50:00', '2009-12-31 02:58:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:17', NULL, '1975-07-30 06:55:00', '2009-12-31 02:58:17') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:58:17', '1975-07-30', 'Canberra', '2009-12-31 02:58:17') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 77 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:17' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:58:17) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 112, DB: 25) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 13:58:18) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 13:58:18) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:58:18) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 01:55:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 02:55:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 03:55:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 04:55:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 05:55:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 06:55:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 07:55:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:00:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:05:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:10:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:15:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:20:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:25:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:30:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:35:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:40:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:45:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:50:00', '2009-12-31 02:58:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 02:58:18', NULL, '1975-07-30 08:55:00', '2009-12-31 02:58:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:58:18', '1975-07-30', 'Perth', '2009-12-31 02:58:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 02:58:18' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:58:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 118ms (View: 111, DB: 23) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-29 23:55:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 00:55:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 01:55:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 02:55:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 03:55:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 04:55:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 05:55:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:00:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:05:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:10:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:15:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:20:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:25:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:30:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:35:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:40:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:45:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:50:00', '2009-12-31 03:00:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:53', NULL, '1975-07-30 06:55:00', '2009-12-31 03:00:53') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:00:53', '1975-07-30', 'Canberra', '2009-12-31 03:00:53') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 21 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:53' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:00:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 290ms (View: 280, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:00:53) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:00:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 113, DB: 7) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-29 23:55:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 00:55:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 01:55:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 02:55:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 03:55:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 04:55:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 05:55:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:00:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:05:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:10:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:15:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:20:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:25:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:30:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:35:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:40:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:45:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:50:00', '2009-12-31 03:00:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:54', NULL, '1975-07-30 06:55:00', '2009-12-31 03:00:54') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:00:54', '1975-07-30', 'Canberra', '2009-12-31 03:00:54') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 78 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:54' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:00:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 208ms (View: 200, DB: 25) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:00:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:00:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 120ms (View: 113, DB: 7) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:00:55) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 01:55:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 02:55:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 03:55:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 04:55:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 05:55:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 06:55:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 07:55:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:00:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:05:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:10:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:15:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:20:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:25:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:30:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:35:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:40:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:45:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:50:00', '2009-12-31 03:00:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:00:55', NULL, '1975-07-30 08:55:00', '2009-12-31 03:00:55') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:00:55', '1975-07-30', 'Perth', '2009-12-31 03:00:55') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:00:55' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:00:55) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 121ms (View: 113, DB: 24) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-29 23:55:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 00:55:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 01:55:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 02:55:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 03:55:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 04:55:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 05:55:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:00:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:05:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:10:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:15:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:20:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:25:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:30:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:35:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:40:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:45:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:50:00', '2009-12-31 03:02:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:42', NULL, '1975-07-30 06:55:00', '2009-12-31 03:02:42') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:02:42', '1975-07-30', 'Canberra', '2009-12-31 03:02:42') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:42' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:43' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:02:43) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 331ms (View: 312, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:02:43) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:02:43) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (81.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 242ms (View: 145, DB: 96) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:00:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:05:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:10:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:15:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:20:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:25:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:30:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:35:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:40:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:45:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:50:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-29 23:55:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:00:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:05:00', '2009-12-31 03:02:43') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:10:00', '2009-12-31 03:02:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:15:00', '2009-12-31 03:02:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:20:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:25:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:30:00', '2009-12-31 03:02:43') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:35:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:40:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:45:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:50:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 00:55:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:00:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:05:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:10:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:15:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:20:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:25:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:30:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:35:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:40:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:45:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:50:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 01:55:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:00:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:05:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:10:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:15:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:20:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:25:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:30:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:35:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:40:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:45:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:50:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 02:55:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:00:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:05:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:10:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:15:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:20:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:25:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:30:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:35:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:40:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:45:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:50:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 03:55:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:00:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:05:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:10:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:15:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:20:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:25:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:30:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:35:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:40:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:45:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:50:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 04:55:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 05:00:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 05:05:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 05:10:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 05:15:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:43', NULL, '1975-07-30 05:20:00', '2009-12-31 03:02:43') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:25:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:30:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:35:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:40:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:45:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:50:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:55:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:00:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:05:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:10:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:15:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:20:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:25:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:30:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:35:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:40:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:45:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:50:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 06:55:00', '2009-12-31 03:02:44') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:02:44', '1975-07-30', 'Canberra', '2009-12-31 03:02:44') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:44' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:02:44) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:02:44) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:02:44) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 247ms (View: 232, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:02:44) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:00:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:05:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:10:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:15:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:20:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:25:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:30:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:35:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:40:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:45:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:50:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 01:55:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:00:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:05:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:10:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:15:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:20:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:25:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:30:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:35:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:40:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:45:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:50:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 02:55:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:00:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:05:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:10:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:15:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:20:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:25:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:30:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:35:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:40:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:45:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:50:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 03:55:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:00:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:05:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:10:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:15:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:20:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:25:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:30:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:35:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:40:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:45:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:50:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 04:55:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:44', NULL, '1975-07-30 05:00:00', '2009-12-31 03:02:44') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:05:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:10:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:15:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:20:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:25:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:30:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:35:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:40:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:45:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:50:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 05:55:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:00:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:05:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:10:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:15:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:20:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:25:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:30:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:35:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:40:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:45:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:50:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 06:55:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:00:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:05:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:10:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:15:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:20:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:25:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:30:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:35:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:40:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:45:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:50:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 07:55:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:00:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:05:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:10:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:15:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:20:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:25:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:30:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:35:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:40:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:45:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:50:00', '2009-12-31 03:02:45') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:45', NULL, '1975-07-30 08:55:00', '2009-12-31 03:02:45') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:02:45', '1975-07-30', 'Perth', '2009-12-31 03:02:45') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 82 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:02:45' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:02:45) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-29 23:55:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 00:55:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 01:55:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 02:55:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 03:55:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 04:55:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 05:55:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:00:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:05:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:10:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:15:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:20:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:25:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:30:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:35:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:40:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:45:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:50:00', '2009-12-31 03:03:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:17', NULL, '1975-07-30 06:55:00', '2009-12-31 03:03:17') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:03:17', '1975-07-30', 'Canberra', '2009-12-31 03:03:17') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 32 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:17' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:03:17) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 333ms (View: 313, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:03:18) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:03:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 241ms (View: 226, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-29 23:55:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 00:55:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 01:55:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 02:55:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 03:55:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 04:55:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 05:55:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:00:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:05:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:10:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:15:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:20:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:25:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:30:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:35:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:40:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:45:00', '2009-12-31 03:03:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:50:00', '2009-12-31 03:03:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:18', NULL, '1975-07-30 06:55:00', '2009-12-31 03:03:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:03:18', '1975-07-30', 'Canberra', '2009-12-31 03:03:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:18' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:03:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:03:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:03:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 247ms (View: 232, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:03:19) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 01:55:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 02:55:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 03:55:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 04:55:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 05:55:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 06:55:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 07:55:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:00:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:05:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:10:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:15:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:20:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:25:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:30:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:35:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:40:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:45:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:50:00', '2009-12-31 03:03:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:03:19', NULL, '1975-07-30 08:55:00', '2009-12-31 03:03:19') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:03:19', '1975-07-30', 'Perth', '2009-12-31 03:03:19') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 82 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:03:19' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:03:20) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:00:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:05:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:10:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:15:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:20:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:25:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:30:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:35:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:40:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:45:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:50:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-29 23:55:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:00:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:05:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:10:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:15:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:20:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:25:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:30:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:35:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:40:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:45:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:50:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 00:55:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:00:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:05:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:10:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:15:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:20:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:25:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:30:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:35:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:40:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:45:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:50:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 01:55:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:00:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:05:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:10:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:15:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:20:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:25:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:30:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:35:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:40:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:45:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:50:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 02:55:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:00:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:05:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:10:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:15:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:20:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:25:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:30:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:35:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:40:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:45:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:50:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 03:55:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:00:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:05:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:10:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:15:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:20:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:25:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:30:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:35:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:40:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:45:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:50:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 04:55:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 05:00:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:37', NULL, '1975-07-30 05:05:00', '2009-12-31 03:10:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:10:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:15:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:20:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:25:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:30:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:35:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:40:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:45:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:50:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 05:55:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:00:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:05:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:10:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:15:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:20:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:25:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:30:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:35:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:40:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:45:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:50:00', '2009-12-31 03:10:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:38', NULL, '1975-07-30 06:55:00', '2009-12-31 03:10:38') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:10:38', '1975-07-30', 'Canberra', '2009-12-31 03:10:38') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:38' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 332ms (View: 313, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:10:38) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:10:38', 4, 'foo@bar.com', '2009-12-31 03:10:38') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 242ms (View: 226, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-29 23:55:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 00:55:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 01:55:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 02:55:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 03:55:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 04:55:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 05:55:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:00:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:05:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:10:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:15:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:20:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:25:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:30:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:35:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:40:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:45:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:50:00', '2009-12-31 03:10:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:39', NULL, '1975-07-30 06:55:00', '2009-12-31 03:10:39') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:10:39', '1975-07-30', 'Canberra', '2009-12-31 03:10:39') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:39' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:39) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 147, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:10:39) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:39) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 247ms (View: 232, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:40) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 01:55:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 02:55:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 03:55:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 04:55:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 05:55:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 06:55:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 07:55:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:00:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:05:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:10:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:15:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:20:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:25:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:30:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:35:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:40:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:45:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:50:00', '2009-12-31 03:10:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:10:40', NULL, '1975-07-30 08:55:00', '2009-12-31 03:10:40') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:10:40', '1975-07-30', 'Perth', '2009-12-31 03:10:40') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:10:40' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:40) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-29 23:55:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 00:55:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 01:55:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 02:55:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 03:55:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 04:55:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 05:55:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:00:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:05:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:10:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:15:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:20:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:25:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:30:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:35:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:40:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:45:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:50:00', '2009-12-31 03:26:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:23', NULL, '1975-07-30 06:55:00', '2009-12-31 03:26:23') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:26:23', '1975-07-30', 'Canberra', '2009-12-31 03:26:23') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:23' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:24' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:26:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 336ms (View: 238, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:26:24) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:26:24', 4, 'foo@bar.com', '2009-12-31 03:26:24') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:26:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 246ms (View: 229, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:05:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:10:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:15:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:20:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:25:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:30:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:35:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:40:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:45:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:50:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-29 23:55:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:05:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:10:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:15:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:20:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:25:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:30:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:35:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:40:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:45:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:50:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 00:55:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:05:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:10:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:15:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:20:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:25:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:30:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:35:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:40:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:45:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:50:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 01:55:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:05:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:10:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:15:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:20:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:25:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:30:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:35:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:40:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:45:00', '2009-12-31 03:26:24') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:50:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 02:55:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:05:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:10:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:15:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:20:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:25:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:30:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:35:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:40:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:45:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:50:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 03:55:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:05:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:10:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:15:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:20:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:25:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:30:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:35:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:40:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:45:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:50:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 04:55:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:05:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:10:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:15:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:20:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:25:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:30:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:35:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:40:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:45:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:50:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 05:55:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:24', NULL, '1975-07-30 06:00:00', '2009-12-31 03:26:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:05:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:10:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:15:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:20:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:25:00', '2009-12-31 03:26:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:30:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:35:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:40:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:45:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:50:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 06:55:00', '2009-12-31 03:26:25') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:26:25', '1975-07-30', 'Canberra', '2009-12-31 03:26:25') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 49 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:25' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:26:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:26:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:26:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 246ms (View: 230, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:26:25) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:00:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:05:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:10:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:15:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:20:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:25:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:30:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:35:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:40:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:45:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:50:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 01:55:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:00:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:05:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:10:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:15:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:20:00', '2009-12-31 03:26:25') + TimeSlot Create (0.6ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:25:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:30:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:35:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:40:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:45:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:50:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 02:55:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:00:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:05:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:10:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:15:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:20:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:25:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:30:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:35:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:40:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:45:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:50:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 03:55:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:00:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:05:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:10:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:15:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:20:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:25:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:30:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:35:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:40:00', '2009-12-31 03:26:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:25', NULL, '1975-07-30 04:45:00', '2009-12-31 03:26:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 04:50:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 04:55:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:00:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:05:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:10:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:15:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:20:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:25:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:30:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:35:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:40:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:45:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:50:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 05:55:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:00:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:05:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:10:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:15:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:20:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:25:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:30:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:35:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:40:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:45:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:50:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 06:55:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:00:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:05:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:10:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:15:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:20:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:25:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:30:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:35:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:40:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:45:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:50:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 07:55:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:00:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:05:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:10:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:15:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:20:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:25:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:30:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:35:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:40:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:45:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:50:00', '2009-12-31 03:26:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:26:26', NULL, '1975-07-30 08:55:00', '2009-12-31 03:26:26') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:26:26', '1975-07-30', 'Perth', '2009-12-31 03:26:26') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:26:26' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:26:26) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 165ms (View: 148, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-29 23:55:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 00:55:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 01:55:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 02:55:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 03:55:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 04:55:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 05:55:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:00:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:05:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:10:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:15:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:20:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:25:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:30:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:35:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:40:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:45:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:50:00', '2009-12-31 03:31:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:26', NULL, '1975-07-30 06:55:00', '2009-12-31 03:31:26') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:31:26', '1975-07-30', 'Canberra', '2009-12-31 03:31:26') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:26' WHERE "id" = 32 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:27' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:27) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 329ms (View: 233, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:31:27) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:31:27', 4, 'foo@bar.com', '2009-12-31 03:31:27') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:27) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 245ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:00:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:05:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:10:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:15:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:20:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:25:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:30:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:35:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:40:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:45:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:50:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-29 23:55:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:00:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:05:00', '2009-12-31 03:31:27') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:10:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:15:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:20:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:25:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:30:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:35:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:40:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:45:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:50:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 00:55:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:00:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:05:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:10:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:15:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:20:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:25:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:30:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:35:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:40:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:45:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:50:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 01:55:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:00:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:05:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:10:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:15:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:20:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:25:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:30:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:35:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:40:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:45:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:50:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 02:55:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:00:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:05:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:10:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:15:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:20:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:25:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:30:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:35:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:40:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:45:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:50:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 03:55:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 04:00:00', '2009-12-31 03:31:27') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 04:05:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 04:10:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 04:15:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 04:20:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:27', NULL, '1975-07-30 04:25:00', '2009-12-31 03:31:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:30:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:35:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:40:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:45:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:50:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:55:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:00:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:05:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:10:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:15:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:20:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:25:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:30:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:35:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:40:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:45:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:50:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 05:55:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:00:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:05:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:10:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:15:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:20:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:25:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:30:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:35:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:40:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:45:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:50:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 06:55:00', '2009-12-31 03:31:28') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:31:28', '1975-07-30', 'Canberra', '2009-12-31 03:31:28') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:28' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:28) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:31:28) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:28) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 249ms (View: 233, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:28) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:00:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:05:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:10:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:15:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:20:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:25:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:30:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:35:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:40:00', '2009-12-31 03:31:28') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:45:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:50:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 01:55:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:00:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:05:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:10:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:15:00', '2009-12-31 03:31:28') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:20:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:25:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:30:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:35:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:40:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:45:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:50:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 02:55:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:00:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:05:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:10:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:15:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:20:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:25:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:30:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:35:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:40:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:45:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:50:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 03:55:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:00:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:05:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:10:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:15:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:20:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:25:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:30:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:28', NULL, '1975-07-30 04:35:00', '2009-12-31 03:31:28') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 04:40:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 04:45:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 04:50:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 04:55:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:00:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:05:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:10:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:15:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:20:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:25:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:30:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:35:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:40:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:45:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:50:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 05:55:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:00:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:05:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:10:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:15:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:20:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:25:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:30:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:35:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:40:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:45:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:50:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 06:55:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:00:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:05:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:10:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:15:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:20:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:25:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:30:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:35:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:40:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:45:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:50:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 07:55:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:00:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:05:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:10:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:15:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:20:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:25:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:30:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:35:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:40:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:45:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:50:00', '2009-12-31 03:31:29') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:31:29', NULL, '1975-07-30 08:55:00', '2009-12-31 03:31:29') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:31:29', '1975-07-30', 'Perth', '2009-12-31 03:31:29') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 77 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:31:29' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:29) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 144, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-29 23:55:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 00:55:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 01:55:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 02:55:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 03:55:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 04:55:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 05:55:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:00:00', '2009-12-31 03:33:14') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:05:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:10:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:15:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:20:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:25:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:30:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:35:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:40:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:45:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:50:00', '2009-12-31 03:33:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:14', NULL, '1975-07-30 06:55:00', '2009-12-31 03:33:14') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:33:14', '1975-07-30', 'Canberra', '2009-12-31 03:33:14') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:14' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:14) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.6ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 330ms (View: 234, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:33:14) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:33:14', 4, 'foo@bar.com', '2009-12-31 03:33:14') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:14) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 244ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-29 23:55:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 00:55:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 01:55:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 02:55:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 03:55:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 04:55:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 05:55:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:00:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:05:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:10:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:15:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:20:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:25:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:30:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:35:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:40:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:45:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:50:00', '2009-12-31 03:33:15') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:15', NULL, '1975-07-30 06:55:00', '2009-12-31 03:33:15') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:33:15', '1975-07-30', 'Canberra', '2009-12-31 03:33:15') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:15' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:15) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 147, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:33:15) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.5ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 4ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:16) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 251ms (View: 235, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:16) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 01:55:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 02:55:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 03:55:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 04:55:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 05:55:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 06:55:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 07:55:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:00:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:05:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:10:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:15:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:20:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:25:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:30:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:35:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:40:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:45:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:50:00', '2009-12-31 03:33:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:33:16', NULL, '1975-07-30 08:55:00', '2009-12-31 03:33:16') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:33:16', '1975-07-30', 'Perth', '2009-12-31 03:33:16') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 58 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:33:16' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:16) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 143, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (54.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-29 23:55:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 00:55:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:05', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:05') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:05', '1975-07-30', 'Canberra', '2009-12-31 03:49:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 21 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:05' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:05) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.6ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 330ms (View: 233, DB: 86) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:49:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:49:06', 4, 'foo@bar.com', '2009-12-31 03:49:06') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 245ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-29 23:55:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 00:55:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:06', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:06') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:06', '1975-07-30', 'Canberra', '2009-12-31 03:49:06') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:06' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 147, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:49:07) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:07) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (89.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 250ms (View: 151, DB: 98) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-29 23:55:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 00:55:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:07', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:07') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:07', '1975-07-30', 'Canberra', '2009-12-31 03:49:07') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:07' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:08) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 164ms (View: 147, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:08) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.6ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 07:55:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:00:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:05:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:10:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:15:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:20:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:25:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:30:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:35:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:40:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:45:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:50:00', '2009-12-31 03:49:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:08', NULL, '1975-07-30 08:55:00', '2009-12-31 03:49:08') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:08', '1975-07-30', 'Perth', '2009-12-31 03:49:08') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 53 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:08' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:08) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-29 23:55:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 00:55:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:51') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:51') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:51', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:51') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:51', '1975-07-30', 'Canberra', '2009-12-31 03:49:51') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:51' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:51) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 329ms (View: 232, DB: 35) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:49:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:49:52', 4, 'foo@bar.com', '2009-12-31 03:49:52') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:52) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 244ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-29 23:55:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 00:55:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:52', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:52') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:52', '1975-07-30', 'Canberra', '2009-12-31 03:49:52') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:52' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 147, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:49:53) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (89.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 250ms (View: 151, DB: 98) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-29 23:55:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 00:55:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:53', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:53') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:53', '1975-07-30', 'Canberra', '2009-12-31 03:49:53') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:49:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 14:49:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:54) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 01:55:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 02:55:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 03:55:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 04:55:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 05:55:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 06:55:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 07:55:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:00:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:05:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:10:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:15:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:20:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:25:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:30:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:35:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:40:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:45:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:50:00', '2009-12-31 03:49:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:49:54', NULL, '1975-07-30 08:55:00', '2009-12-31 03:49:54') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:49:54', '1975-07-30', 'Perth', '2009-12-31 03:49:54') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:49:54' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:49:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 144, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-29 23:55:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 00:55:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 01:55:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 02:55:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 03:55:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 04:55:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 05:55:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:00:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:05:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:10:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:15:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:20:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:25:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:30:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:35:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:40:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:45:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:50:00', '2009-12-31 03:51:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:56', NULL, '1975-07-30 06:55:00', '2009-12-31 03:51:56') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:51:56', '1975-07-30', 'Canberra', '2009-12-31 03:51:56') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:56' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 43 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:57' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:51:57) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 334ms (View: 236, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:51:57) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:51:57', 4, 'foo@bar.com', '2009-12-31 03:51:57') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:51:57) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 247ms (View: 230, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:00:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:05:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:10:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:15:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:20:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:25:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:30:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:35:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:40:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:45:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:50:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-29 23:55:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:00:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:05:00', '2009-12-31 03:51:57') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:10:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:15:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:20:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:25:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:30:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:35:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:40:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:45:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:50:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 00:55:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:00:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:05:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:10:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:15:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:20:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:25:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:30:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:35:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:40:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:45:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:50:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 01:55:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:00:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:05:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:10:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:15:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:20:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:25:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:30:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:35:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:40:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:45:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:50:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 02:55:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:00:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:05:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:10:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:15:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:20:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:25:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:30:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:35:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:40:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:45:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:50:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 03:55:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:00:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:05:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:10:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:15:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:20:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:25:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:30:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:35:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:40:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:45:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:50:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 04:55:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:00:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:05:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:10:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:15:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:20:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:25:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:30:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:35:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:40:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:45:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:50:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:57', NULL, '1975-07-30 05:55:00', '2009-12-31 03:51:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:00:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:05:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:10:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:15:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:20:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:25:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:30:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:35:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:40:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:45:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:50:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 06:55:00', '2009-12-31 03:51:58') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:51:58', '1975-07-30', 'Canberra', '2009-12-31 03:51:58') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 39 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 85 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:58' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:51:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 164ms (View: 148, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:51:58) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:51:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (90.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 255ms (View: 154, DB: 100) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:00:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:05:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:10:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:15:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:20:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:25:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:30:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:35:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:40:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:45:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:50:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-29 23:55:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:00:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:05:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:10:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:15:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:20:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:25:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:30:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:35:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:40:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:45:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:50:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 00:55:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:00:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:05:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:10:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:15:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:20:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:25:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:30:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:35:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:58', NULL, '1975-07-30 01:40:00', '2009-12-31 03:51:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:55:00', '2009-12-31 03:51:59') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:51:59', '1975-07-30', 'Canberra', '2009-12-31 03:51:59') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 73 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:51:59' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:51:59) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 164ms (View: 147, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:51:59) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 14:51:59) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:51:59) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 01:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 02:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 03:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 04:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:20:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:25:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:30:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:35:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:40:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:45:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:50:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 05:55:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:00:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:05:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:10:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:51:59', NULL, '1975-07-30 06:15:00', '2009-12-31 03:51:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:20:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:25:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:30:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:35:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:40:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:45:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:50:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 06:55:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:00:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:05:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:10:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:15:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:20:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:25:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:30:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:35:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:40:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:45:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:50:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 07:55:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:00:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:05:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:10:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:15:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:20:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:25:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:30:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:35:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:40:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:45:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:50:00', '2009-12-31 03:52:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:00', NULL, '1975-07-30 08:55:00', '2009-12-31 03:52:00') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:52:00', '1975-07-30', 'Perth', '2009-12-31 03:52:00') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:00' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:00) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (9.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 165ms (View: 147, DB: 34) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-29 23:55:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 00:55:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 01:55:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 02:55:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 03:55:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 04:55:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 05:55:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:00:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:05:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:10:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:15:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:20:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:25:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:30:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:35:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:40:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:45:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:50:00', '2009-12-31 03:52:52') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:52', NULL, '1975-07-30 06:55:00', '2009-12-31 03:52:52') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:52:52', '1975-07-30', 'Canberra', '2009-12-31 03:52:52') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:52' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:52) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.6ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 332ms (View: 234, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:52:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:52:52', 4, 'foo@bar.com', '2009-12-31 03:52:52') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (81.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 244ms (View: 147, DB: 96) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-29 23:55:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 00:55:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 01:55:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 02:55:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 03:55:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 04:55:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 05:55:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:00:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:05:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:10:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:15:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:20:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:25:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:30:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:35:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:40:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:45:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:50:00', '2009-12-31 03:52:53') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:53', NULL, '1975-07-30 06:55:00', '2009-12-31 03:52:53') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:52:53', '1975-07-30', 'Canberra', '2009-12-31 03:52:53') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:53' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:52:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (89.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 251ms (View: 152, DB: 98) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-29 23:55:00', '2009-12-31 03:52:54') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 00:55:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 01:55:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 02:55:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 03:55:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 04:55:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 05:55:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:00:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:05:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:10:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:15:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:20:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:25:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:30:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:35:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:40:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:45:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:50:00', '2009-12-31 03:52:54') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:54', NULL, '1975-07-30 06:55:00', '2009-12-31 03:52:54') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:52:54', '1975-07-30', 'Canberra', '2009-12-31 03:52:54') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:54' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 145, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:52:55) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 14:52:55) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:55) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 01:55:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 02:55:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 03:55:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 04:55:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 05:55:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 06:55:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 07:55:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:00:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:05:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:10:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:15:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:20:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:25:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:30:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:35:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:40:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:45:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:50:00', '2009-12-31 03:52:55') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:52:55', NULL, '1975-07-30 08:55:00', '2009-12-31 03:52:55') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:52:55', '1975-07-30', 'Perth', '2009-12-31 03:52:55') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 11 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:52:55' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:52:55) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 145, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-29 23:55:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 00:55:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 01:55:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 02:55:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 03:55:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 04:55:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 05:55:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:00:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:05:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:10:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:15:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:20:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:25:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:30:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:35:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:40:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:45:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:50:00', '2009-12-31 03:53:16') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:16', NULL, '1975-07-30 06:55:00', '2009-12-31 03:53:16') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:53:16', '1975-07-30', 'Canberra', '2009-12-31 03:53:16') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:16' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:53:16) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 330ms (View: 233, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:53:16) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:53:16', 4, 'foo@bar.com', '2009-12-31 03:53:16') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:53:16) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (81.0ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 244ms (View: 147, DB: 96) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-29 23:55:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 00:55:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 01:55:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 02:55:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 03:55:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 04:55:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 05:55:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:00:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:05:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:10:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:15:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:20:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:25:00', '2009-12-31 03:53:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:30:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:35:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:40:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:45:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:50:00', '2009-12-31 03:53:17') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:17', NULL, '1975-07-30 06:55:00', '2009-12-31 03:53:17') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:53:17', '1975-07-30', 'Canberra', '2009-12-31 03:53:17') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:17' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:53:17) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:53:17) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:53:17) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (89.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 251ms (View: 152, DB: 97) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-29 23:55:00', '2009-12-31 03:53:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 00:55:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 01:55:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 02:55:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 03:55:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 04:55:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 05:55:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:00:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:05:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:10:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:15:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:20:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:25:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:30:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:35:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:40:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:45:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:50:00', '2009-12-31 03:53:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:18', NULL, '1975-07-30 06:55:00', '2009-12-31 03:53:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:53:18', '1975-07-30', 'Canberra', '2009-12-31 03:53:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:18' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:53:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 164ms (View: 148, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:53:18) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 14:53:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:53:19) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 01:55:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 02:55:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 03:55:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 04:55:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 05:55:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 06:55:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 07:55:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:00:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:05:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:10:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:15:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:20:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:25:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:30:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:35:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:40:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:45:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:50:00', '2009-12-31 03:53:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:53:19', NULL, '1975-07-30 08:55:00', '2009-12-31 03:53:19') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:53:19', '1975-07-30', 'Perth', '2009-12-31 03:53:19') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:53:19' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:53:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 159ms (View: 144, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-29 23:55:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 00:55:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 01:55:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 02:55:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 03:55:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 04:55:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 05:55:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:00:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:05:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:10:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:15:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:20:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:25:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:30:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:35:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:40:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:45:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:50:00', '2009-12-31 03:54:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:18', NULL, '1975-07-30 06:55:00', '2009-12-31 03:54:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:54:18', '1975-07-30', 'Canberra', '2009-12-31 03:54:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:19' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:54:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 328ms (View: 233, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:54:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:54:19', 4, 'foo@bar.com', '2009-12-31 03:54:19') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:54:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 243ms (View: 227, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:30:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:35:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:40:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:45:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:50:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-29 23:55:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:30:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:35:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:40:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:45:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:50:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 00:55:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:30:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:35:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:40:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:45:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:50:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 01:55:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:30:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:35:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:40:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:45:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:50:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 02:55:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:30:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:35:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:40:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:45:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:50:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 03:55:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:30:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:35:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:40:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:45:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:50:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 04:55:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:30:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:35:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:40:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:45:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:50:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 05:55:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 06:00:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 06:05:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 06:10:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 06:15:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 06:20:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:19', NULL, '1975-07-30 06:25:00', '2009-12-31 03:54:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 06:30:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 06:35:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 06:40:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 06:45:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 06:50:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 06:55:00', '2009-12-31 03:54:20') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:54:20', '1975-07-30', 'Canberra', '2009-12-31 03:54:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:20' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:54:20) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 146, DB: 30) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:54:20) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:54:20) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (90.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 251ms (View: 152, DB: 98) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:00:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:05:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:10:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:15:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:20:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:25:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:30:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:35:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:40:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:45:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:50:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-29 23:55:00', '2009-12-31 03:54:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:00:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:05:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:10:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:15:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:20:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:25:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:30:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:35:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:40:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:45:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:50:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 00:55:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:00:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:05:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:10:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:15:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:20:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:25:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:30:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:35:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:40:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:45:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:50:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 01:55:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:00:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:05:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:10:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:15:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:20:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:25:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:30:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:35:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:40:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:45:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:20', NULL, '1975-07-30 02:50:00', '2009-12-31 03:54:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:55:00', '2009-12-31 03:54:21') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:54:21', '1975-07-30', 'Canberra', '2009-12-31 03:54:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:54:21) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:54:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 14:54:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:54:21) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 01:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 02:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 03:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 04:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 05:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 06:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 07:55:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:00:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:05:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:10:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:15:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:20:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:25:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:30:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:35:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:40:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:45:00', '2009-12-31 03:54:21') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:50:00', '2009-12-31 03:54:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:54:21', NULL, '1975-07-30 08:55:00', '2009-12-31 03:54:21') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:54:21', '1975-07-30', 'Perth', '2009-12-31 03:54:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 5 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 7 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:54:22' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:54:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 144, DB: 34) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-29 23:55:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 00:55:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 01:55:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 02:55:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 03:55:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 04:55:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 05:55:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:00:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:05:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:10:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:15:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:20:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:25:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:30:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:35:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:40:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:45:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:50:00', '2009-12-31 04:43:46') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:46', NULL, '1975-07-30 06:55:00', '2009-12-31 04:43:46') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:43:46', '1975-07-30', 'Canberra', '2009-12-31 04:43:46') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 5 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:46' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:43:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 333ms (View: 236, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:43:46) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:43:46', 4, 'foo@bar.com', '2009-12-31 04:43:46') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 9ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:43:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 244ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-29 23:55:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 00:55:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 01:55:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 02:55:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 03:55:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 04:55:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 05:55:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:00:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:05:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:10:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:15:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:20:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:25:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:30:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:35:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:40:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:45:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:50:00', '2009-12-31 04:43:47') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:47', NULL, '1975-07-30 06:55:00', '2009-12-31 04:43:47') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:43:47', '1975-07-30', 'Canberra', '2009-12-31 04:43:47') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:47' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:43:47) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 147, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:43:47) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:43:48) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 252ms (View: 235, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-29 23:55:00', '2009-12-31 04:43:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 00:55:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 01:55:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 02:55:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 03:55:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 04:55:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 05:55:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:00:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:05:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:10:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:15:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:20:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:25:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:30:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:35:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:40:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:45:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:50:00', '2009-12-31 04:43:48') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:48', NULL, '1975-07-30 06:55:00', '2009-12-31 04:43:48') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:43:48', '1975-07-30', 'Canberra', '2009-12-31 04:43:48') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:48' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:43:48) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 146, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:43:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 15:43:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:43:49) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 01:55:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 02:55:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 03:55:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 04:55:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 05:55:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 06:55:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 07:55:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:00:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:05:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:10:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:15:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:20:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:25:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:30:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:35:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:40:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:45:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:50:00', '2009-12-31 04:43:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:43:49', NULL, '1975-07-30 08:55:00', '2009-12-31 04:43:49') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:43:49', '1975-07-30', 'Perth', '2009-12-31 04:43:49') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:43:49' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:43:49) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 145, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:00:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:05:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:10:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:15:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:20:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:25:00', '2009-12-31 04:48:57') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:30:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:35:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:40:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:45:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:50:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-29 23:55:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:00:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:05:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:10:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:15:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:20:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:25:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:30:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:57', NULL, '1975-07-30 00:35:00', '2009-12-31 04:48:57') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 00:40:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 00:45:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 00:50:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 00:55:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:00:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:05:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:10:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:15:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:20:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:25:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:30:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:35:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:40:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:45:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:50:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 01:55:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:00:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:05:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:10:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:15:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:20:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:25:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:30:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:35:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:40:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:45:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:50:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 02:55:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:00:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:05:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:10:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:15:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:20:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:25:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:30:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:35:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:40:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:45:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:50:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 03:55:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:00:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:05:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:10:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:15:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:20:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:25:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:30:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:35:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:40:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:45:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:50:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 04:55:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:00:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:05:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:10:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:15:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:20:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:25:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:30:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:35:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:40:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:45:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:50:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 05:55:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:00:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:05:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:10:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:15:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:20:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:25:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:30:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:35:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:40:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:45:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:50:00', '2009-12-31 04:48:58') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:58', NULL, '1975-07-30 06:55:00', '2009-12-31 04:48:58') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:48:58', '1975-07-30', 'Canberra', '2009-12-31 04:48:58') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:58' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:48:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 330ms (View: 233, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:48:58) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:48:58', 4, 'foo@bar.com', '2009-12-31 04:48:58') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 8ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:48:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 244ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-29 23:55:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 00:55:00', '2009-12-31 04:48:59') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 01:55:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 02:55:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 03:55:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 04:55:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 05:55:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:00:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:05:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:10:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:15:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:20:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:25:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:30:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:35:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:40:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:45:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:50:00', '2009-12-31 04:48:59') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:48:59', NULL, '1975-07-30 06:55:00', '2009-12-31 04:48:59') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:48:59', '1975-07-30', 'Canberra', '2009-12-31 04:48:59') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:48:59' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:48:59) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 176ms (View: 159, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:48:59) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 3ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:48:59) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 269ms (View: 252, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-29 23:55:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 00:55:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 01:55:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 02:55:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 03:55:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 04:55:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 05:55:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:00:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:05:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:10:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:15:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:20:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:25:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:30:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:35:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:40:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:45:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:50:00', '2009-12-31 04:49:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:00', NULL, '1975-07-30 06:55:00', '2009-12-31 04:49:00') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:49:00', '1975-07-30', 'Canberra', '2009-12-31 04:49:00') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:00' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:00) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 178ms (View: 160, DB: 34) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:00) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:01) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 180ms (View: 162, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:01) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 01:55:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 02:55:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 03:55:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 04:55:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 05:55:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 06:55:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 07:55:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:00:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:05:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:10:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:15:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:20:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:25:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:30:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:35:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:40:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:45:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:50:00', '2009-12-31 04:49:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 04:49:01', NULL, '1975-07-30 08:55:00', '2009-12-31 04:49:01') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 04:49:01', '1975-07-30', 'Perth', '2009-12-31 04:49:01') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 46 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 57 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 04:49:01' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:01) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 174ms (View: 157, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:00:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:05:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:10:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:15:00', '2009-12-31 05:13:03') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:20:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:25:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:30:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:35:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:40:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:45:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:50:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-29 23:55:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:00:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:05:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:10:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:15:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:20:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:25:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:30:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:35:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:40:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:45:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:50:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 00:55:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:00:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:05:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:10:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:15:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:20:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:25:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:30:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:35:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:40:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:45:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:50:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 01:55:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:00:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:05:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:10:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:15:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:20:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:25:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:30:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:35:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:03', NULL, '1975-07-30 02:40:00', '2009-12-31 05:13:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 02:45:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 02:50:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 02:55:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:00:00', '2009-12-31 05:13:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:05:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:10:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:15:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:20:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:25:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:30:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:35:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:40:00', '2009-12-31 05:13:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:45:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:50:00', '2009-12-31 05:13:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 03:55:00', '2009-12-31 05:13:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:00:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:05:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:10:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:15:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:20:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:25:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:30:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:35:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:40:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:45:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:50:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 04:55:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:00:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:05:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:10:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:15:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:20:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:25:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:30:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:35:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:40:00', '2009-12-31 05:13:04') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:45:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:50:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 05:55:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:00:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:05:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:10:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:15:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:20:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:25:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:30:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:35:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:40:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:45:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:50:00', '2009-12-31 05:13:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:04', NULL, '1975-07-30 06:55:00', '2009-12-31 05:13:04') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 05:13:04', '1975-07-30', 'Canberra', '2009-12-31 05:13:04') + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 5 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 12 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 29 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 69 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:04' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:04) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (10.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 475ms (View: 334, DB: 46) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:13:04) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.2ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 05:13:05', 4, 'foo@bar.com', '2009-12-31 05:13:05') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 12ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:05) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.7ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (10.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 350ms (View: 326, DB: 23) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-29 23:55:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 00:55:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 01:55:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 02:55:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 03:55:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 04:55:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 05:55:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:00:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:05:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:10:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:15:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:20:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:25:00', '2009-12-31 05:13:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:30:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:35:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:40:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:45:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:50:00', '2009-12-31 05:13:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:05', NULL, '1975-07-30 06:55:00', '2009-12-31 05:13:05') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 05:13:05', '1975-07-30', 'Canberra', '2009-12-31 05:13:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:05' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:06' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (10.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 242ms (View: 219, DB: 45) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:13:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (119.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 360ms (View: 227, DB: 132) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-29 23:55:00', '2009-12-31 05:13:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 00:55:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 01:55:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 02:55:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 03:55:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 04:55:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 05:55:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:00:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:05:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:10:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:15:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:20:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:25:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:30:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:35:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:40:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:45:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:50:00', '2009-12-31 05:13:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:07', NULL, '1975-07-30 06:55:00', '2009-12-31 05:13:07') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 05:13:07', '1975-07-30', 'Canberra', '2009-12-31 05:13:07') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 19 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 57 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 73 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 80 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 91 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:07' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:07) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (10.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 242ms (View: 218, DB: 46) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:13:08) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:08) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (10.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 498ms (View: 474, DB: 22) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:08) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:00:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:05:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:10:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:15:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:20:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:25:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:30:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:35:00', '2009-12-31 05:13:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:40:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:45:00', '2009-12-31 05:13:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:50:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 01:55:00', '2009-12-31 05:13:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:00:00', '2009-12-31 05:13:08') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:05:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:10:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:15:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:20:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:25:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:30:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:35:00', '2009-12-31 05:13:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:40:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:45:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:50:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 02:55:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:00:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:05:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:10:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:15:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:20:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:25:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:30:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:35:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:40:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:45:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:50:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 03:55:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 04:00:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 04:05:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 04:10:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 04:15:00', '2009-12-31 05:13:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 04:20:00', '2009-12-31 05:13:08') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:08', NULL, '1975-07-30 04:25:00', '2009-12-31 05:13:08') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 04:30:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 04:35:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 04:40:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 04:45:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 04:50:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 04:55:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:00:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:05:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:10:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:15:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:20:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:25:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:30:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:35:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:40:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:45:00', '2009-12-31 05:13:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:50:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 05:55:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:00:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:05:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:10:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:15:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:20:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:25:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:30:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:35:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:40:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:45:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:50:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 06:55:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:00:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:05:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:10:00', '2009-12-31 05:13:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:15:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:20:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:25:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:30:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:35:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:40:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:45:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:50:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 07:55:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:00:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:05:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:10:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:15:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:20:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:25:00', '2009-12-31 05:13:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:30:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:35:00', '2009-12-31 05:13:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:40:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:45:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:50:00', '2009-12-31 05:13:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 05:13:09', NULL, '1975-07-30 08:55:00', '2009-12-31 05:13:09') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 05:13:09', '1975-07-30', 'Perth', '2009-12-31 05:13:09') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 7 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 27 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 76 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 81 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 05:13:09' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:13:09) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (10.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 239ms (View: 216, DB: 46) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:09') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:09') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:09', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:09') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:09', '1975-07-30', 'Canberra', '2009-12-31 06:07:09') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:09' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:09) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 326ms (View: 230, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:07:09) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 06:07:09', 4, 'foo@bar.com', '2009-12-31 06:07:09') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 8ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:09) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 249ms (View: 233, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:10') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:10') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:10', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:10') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:10', '1975-07-30', 'Canberra', '2009-12-31 06:07:10') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:10' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:10) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 145, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:07:10) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:11) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 172ms (View: 156, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:11') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:11', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:11') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:11', '1975-07-30', 'Canberra', '2009-12-31 06:07:11') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:11' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:11) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:07:12) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:12) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 353ms (View: 336, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:12') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:12', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:12') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:12', '1975-07-30', 'Canberra', '2009-12-31 06:07:12') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:12' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:13) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:13) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 07:55:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:00:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:05:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:10:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:15:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:20:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:25:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:30:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:35:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:40:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:45:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:50:00', '2009-12-31 06:07:13') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:13', NULL, '1975-07-30 08:55:00', '2009-12-31 06:07:13') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:13', '1975-07-30', 'Perth', '2009-12-31 06:07:13') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:13' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:13) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:35', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:35') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:35', '1975-07-30', 'Canberra', '2009-12-31 06:07:35') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 23 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:35' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:36' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:36) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (1.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 327ms (View: 230, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:07:36) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 06:07:36', 4, 'foo@bar.com', '2009-12-31 06:07:36') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 9ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:36) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 243ms (View: 227, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:36') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:36', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:37') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:37', '1975-07-30', 'Canberra', '2009-12-31 06:07:37') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:37' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:37) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:07:37) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:37) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 167ms (View: 151, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:37', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:37') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:38', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:38') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:38', '1975-07-30', 'Canberra', '2009-12-31 06:07:38') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:38' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (9.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 165ms (View: 146, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:07:38) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 346ms (View: 330, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-29 23:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 00:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:39') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:39', '1975-07-30', 'Canberra', '2009-12-31 06:07:39') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:39' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:39) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:39) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 01:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 02:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 03:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 04:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 05:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 06:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:25:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:30:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:35:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:40:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:45:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:50:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 07:55:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 08:00:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 08:05:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 08:10:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 08:15:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:39', NULL, '1975-07-30 08:20:00', '2009-12-31 06:07:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:40', NULL, '1975-07-30 08:25:00', '2009-12-31 06:07:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:40', NULL, '1975-07-30 08:30:00', '2009-12-31 06:07:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:40', NULL, '1975-07-30 08:35:00', '2009-12-31 06:07:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:40', NULL, '1975-07-30 08:40:00', '2009-12-31 06:07:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:40', NULL, '1975-07-30 08:45:00', '2009-12-31 06:07:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:40', NULL, '1975-07-30 08:50:00', '2009-12-31 06:07:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:07:40', NULL, '1975-07-30 08:55:00', '2009-12-31 06:07:40') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:07:40', '1975-07-30', 'Perth', '2009-12-31 06:07:40') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 56 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:07:40' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:07:40) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 144, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-29 23:55:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 00:55:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 01:55:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 02:55:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 03:55:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 04:55:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 05:55:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:00:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:05:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:10:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:15:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:20:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:25:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:30:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:35:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:40:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:45:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:50:00', '2009-12-31 06:08:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:18', NULL, '1975-07-30 06:55:00', '2009-12-31 06:08:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:08:18', '1975-07-30', 'Canberra', '2009-12-31 06:08:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:18' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.6ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 326ms (View: 230, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:08:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 06:08:19', 4, 'foo@bar.com', '2009-12-31 06:08:19') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 8ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 243ms (View: 227, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-29 23:55:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 00:55:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 01:55:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 02:55:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 03:55:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 04:55:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 05:55:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:00:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:05:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:10:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:15:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:20:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:25:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:30:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:35:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:40:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:45:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:50:00', '2009-12-31 06:08:19') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:19', NULL, '1975-07-30 06:55:00', '2009-12-31 06:08:19') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:08:19', '1975-07-30', 'Canberra', '2009-12-31 06:08:19') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:19' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:20) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 144, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:08:20) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:20) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 167ms (View: 151, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-29 23:55:00', '2009-12-31 06:08:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 00:55:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 01:55:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 02:55:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 03:55:00', '2009-12-31 06:08:20') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 04:55:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 05:55:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:00:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:05:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:10:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:15:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:20:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:25:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:30:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:35:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:40:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:45:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:50:00', '2009-12-31 06:08:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:20', NULL, '1975-07-30 06:55:00', '2009-12-31 06:08:20') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:08:20', '1975-07-30', 'Canberra', '2009-12-31 06:08:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:20' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:21) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:08:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:21) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 346ms (View: 330, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:00:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:05:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:10:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:15:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:20:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:25:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:30:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:35:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:40:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:45:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:50:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-29 23:55:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:00:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:05:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:10:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:15:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:20:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:25:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:30:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:35:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:40:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:45:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:50:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 00:55:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:00:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:05:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:10:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:15:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:20:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:25:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:30:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:35:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:40:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:45:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:50:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 01:55:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:00:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:05:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:10:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:15:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:20:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:25:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:30:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:35:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:40:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:45:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:50:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 02:55:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:00:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:05:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:10:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:15:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:20:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:25:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:30:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:35:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:40:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:45:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:50:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 03:55:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:00:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:05:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:10:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:15:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:20:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:25:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:30:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:35:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:40:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:45:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:50:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 04:55:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:21', NULL, '1975-07-30 05:00:00', '2009-12-31 06:08:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:05:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:10:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:15:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:20:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:25:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:30:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:35:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:40:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:45:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:50:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 05:55:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:00:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:05:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:10:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:15:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:20:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:25:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:30:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:35:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:40:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:45:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:50:00', '2009-12-31 06:08:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:22', NULL, '1975-07-30 06:55:00', '2009-12-31 06:08:22') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:08:22', '1975-07-30', 'Canberra', '2009-12-31 06:08:22') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:22' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:08:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 254ms (View: 238, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:22) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 01:55:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 02:55:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 03:55:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 04:55:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 05:55:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 06:55:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 07:55:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:00:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:05:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:10:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:15:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:20:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:25:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:30:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:35:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:40:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:45:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:50:00', '2009-12-31 06:08:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:08:23', NULL, '1975-07-30 08:55:00', '2009-12-31 06:08:23') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:08:23', '1975-07-30', 'Perth', '2009-12-31 06:08:23') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:08:23' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:08:23) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 160ms (View: 144, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-29 23:55:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 00:55:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 01:55:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 02:55:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 03:55:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 04:55:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 05:55:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:00:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:05:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:10:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:15:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:20:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:25:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:30:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:35:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:40:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:45:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:50:00', '2009-12-31 06:10:02') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:02', NULL, '1975-07-30 06:55:00', '2009-12-31 06:10:02') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:10:02', '1975-07-30', 'Canberra', '2009-12-31 06:10:02') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:02' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:02) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 327ms (View: 231, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:10:03) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 06:10:03', 4, 'foo@bar.com', '2009-12-31 06:10:03') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 9ms (DB: 1) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:03) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 244ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-29 23:55:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 00:55:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 01:55:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 02:55:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 03:55:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 04:55:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 05:55:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:00:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:05:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:10:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:15:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:20:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:25:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:30:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:35:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:40:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:45:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:50:00', '2009-12-31 06:10:03') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:03', NULL, '1975-07-30 06:55:00', '2009-12-31 06:10:03') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:10:03', '1975-07-30', 'Canberra', '2009-12-31 06:10:03') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:03' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:03) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:10:04) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:04) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 169ms (View: 153, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-29 23:55:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 00:55:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 01:55:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 02:55:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 03:55:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 04:55:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 05:55:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:00:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:05:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:10:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:15:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:20:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:25:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:30:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:35:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:40:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:45:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:50:00', '2009-12-31 06:10:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:04', NULL, '1975-07-30 06:55:00', '2009-12-31 06:10:04') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:10:04', '1975-07-30', 'Canberra', '2009-12-31 06:10:04') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:04' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:04) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 147, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:10:05) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:05) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 347ms (View: 331, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-29 23:55:00', '2009-12-31 06:10:05') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 00:55:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 01:55:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 02:55:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 03:55:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 04:55:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 05:55:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:00:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:05:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:10:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:15:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:20:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:25:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:30:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:35:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:40:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:45:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:50:00', '2009-12-31 06:10:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:05', NULL, '1975-07-30 06:55:00', '2009-12-31 06:10:05') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:10:05', '1975-07-30', 'Canberra', '2009-12-31 06:10:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:05' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:06' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:10:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 341ms (View: 325, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:06) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:00:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:05:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:10:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:15:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:20:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:25:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:30:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:35:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:40:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:45:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:50:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 01:55:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:00:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:05:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:10:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:15:00', '2009-12-31 06:10:06') + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:20:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:25:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:30:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:35:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:40:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:45:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:50:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 02:55:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:00:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:05:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:10:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:15:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:20:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:25:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:30:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:35:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:40:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:45:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:50:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 03:55:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:06', NULL, '1975-07-30 04:00:00', '2009-12-31 06:10:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:05:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:10:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:15:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:20:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:25:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:30:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:35:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:40:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:45:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:50:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 04:55:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:00:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:05:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:10:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:15:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:20:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:25:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:30:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:35:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:40:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:45:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:50:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 05:55:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:00:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:05:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:10:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:15:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:20:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:25:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:30:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:35:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:40:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:45:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:50:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 06:55:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:00:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:05:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:10:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:15:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:20:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:25:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:30:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:35:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:40:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:45:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:50:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 07:55:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:00:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:05:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:10:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:15:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:20:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:25:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:30:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:35:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:40:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:45:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:50:00', '2009-12-31 06:10:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:10:07', NULL, '1975-07-30 08:55:00', '2009-12-31 06:10:07') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:10:07', '1975-07-30', 'Perth', '2009-12-31 06:10:07') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:10:07' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:07) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 164ms (View: 147, DB: 33) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-29 23:55:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 00:55:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 01:55:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 02:55:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 03:55:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 04:55:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 05:55:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:00:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:05:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:10:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:15:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:20:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:25:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:30:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:35:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:40:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:45:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:50:00', '2009-12-31 06:20:20') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:20', NULL, '1975-07-30 06:55:00', '2009-12-31 06:20:20') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:20:20', '1975-07-30', 'Canberra', '2009-12-31 06:20:20') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:20' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:20) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 329ms (View: 231, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:20:20) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 06:20:20', 4, 'foo@bar.com', '2009-12-31 06:20:20') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 8ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:20) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 245ms (View: 229, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-29 23:55:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 00:55:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 01:55:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 02:55:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 03:55:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 04:55:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 05:55:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:00:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:05:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:10:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:15:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:20:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:25:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:30:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:35:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:40:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:45:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:50:00', '2009-12-31 06:20:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:21', NULL, '1975-07-30 06:55:00', '2009-12-31 06:20:21') + DayOfAction Create (0.2ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:20:21', '1975-07-30', 'Canberra', '2009-12-31 06:20:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:21' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:21) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 202ms (View: 186, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:20:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 168ms (View: 152, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-29 23:55:00', '2009-12-31 06:20:22') + TimeSlot Create (0.9ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 00:55:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 01:55:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 02:55:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 03:55:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 04:55:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 05:55:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:00:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:05:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:10:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:15:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:20:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:25:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:30:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:35:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:40:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:45:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:50:00', '2009-12-31 06:20:22') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:22', NULL, '1975-07-30 06:55:00', '2009-12-31 06:20:22') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:20:22', '1975-07-30', 'Canberra', '2009-12-31 06:20:22') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 12 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:22' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 164ms (View: 147, DB: 34) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:20:23) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:23) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 349ms (View: 332, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-29 23:55:00', '2009-12-31 06:20:23') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 00:55:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 01:55:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 02:55:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 03:55:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 04:55:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 05:55:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:00:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:05:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:10:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:15:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:20:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:25:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:30:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:35:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:40:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:45:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:50:00', '2009-12-31 06:20:23') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:23', NULL, '1975-07-30 06:55:00', '2009-12-31 06:20:23') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:20:23', '1975-07-30', 'Canberra', '2009-12-31 06:20:23') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:23' WHERE "id" = 81 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:24' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 146, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:20:24) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 341ms (View: 324, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:24) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:00:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:05:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:10:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:15:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:20:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:25:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:30:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:35:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:40:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:45:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:50:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 01:55:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:00:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:05:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:10:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:15:00', '2009-12-31 06:20:24') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:20:00', '2009-12-31 06:20:24') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:25:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:30:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:35:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:40:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:45:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:50:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 02:55:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:00:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:05:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:10:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:15:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:20:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:25:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:30:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:35:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:40:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:45:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:50:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 03:55:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:00:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:05:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:10:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:15:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:20:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:25:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:30:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:35:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:40:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:45:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:50:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 04:55:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:00:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:05:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:10:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:15:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:20:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:25:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:30:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:35:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:40:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:45:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:50:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:24', NULL, '1975-07-30 05:55:00', '2009-12-31 06:20:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:00:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:05:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:10:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:15:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:20:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:25:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:30:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:35:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:40:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:45:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:50:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 06:55:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:00:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:05:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:10:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:15:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:20:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:25:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:30:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:35:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:40:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:45:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:50:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 07:55:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:00:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:05:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:10:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:15:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:20:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:25:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:30:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:35:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:40:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:45:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:50:00', '2009-12-31 06:20:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:25', NULL, '1975-07-30 08:55:00', '2009-12-31 06:20:25') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:20:25', '1975-07-30', 'Perth', '2009-12-31 06:20:25') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:20:25' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:20:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 161ms (View: 145, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:00:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:05:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:10:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:15:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:20:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:25:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:30:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:35:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:40:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:45:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:50:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-29 23:55:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:37', NULL, '1975-07-30 00:00:00', '2009-12-31 06:29:37') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:05:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:10:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:15:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:20:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:25:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:30:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:35:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:40:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:45:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:50:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 00:55:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:00:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:05:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:10:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:15:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:20:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:25:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:30:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:35:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:40:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:45:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:50:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 01:55:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:00:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:05:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:10:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:15:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:20:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:25:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:30:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:35:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:40:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:45:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:50:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 02:55:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:00:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:05:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:10:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:15:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:20:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:25:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:30:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:35:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:40:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:45:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:50:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 03:55:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:00:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:05:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:10:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:15:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:20:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:25:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:30:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:35:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:40:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:45:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:50:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 04:55:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:00:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:05:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:10:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:15:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:20:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:25:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:30:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:35:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:40:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:45:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:50:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 05:55:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:00:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:05:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:10:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:15:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:20:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:25:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:30:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:35:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:40:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:45:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:50:00', '2009-12-31 06:29:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:38', NULL, '1975-07-30 06:55:00', '2009-12-31 06:29:38') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:29:38', '1975-07-30', 'Canberra', '2009-12-31 06:29:38') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:38' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.7ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 329ms (View: 231, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:29:38) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.1ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 06:29:38', 4, 'foo@bar.com', '2009-12-31 06:29:38') +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 8ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 245ms (View: 228, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-29 23:55:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 00:55:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 01:55:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 02:55:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 03:55:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 04:55:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 05:55:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:00:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:05:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:10:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:15:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:20:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:25:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:30:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:35:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:40:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:45:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:50:00', '2009-12-31 06:29:39') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:39', NULL, '1975-07-30 06:55:00', '2009-12-31 06:29:39') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:29:39', '1975-07-30', 'Canberra', '2009-12-31 06:29:39') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:39' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:39) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 146, DB: 31) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:29:39) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:39) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 169ms (View: 153, DB: 15) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-29 23:55:00', '2009-12-31 06:29:40') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 00:55:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 01:55:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 02:55:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 03:55:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 04:55:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 05:55:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:00:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:05:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:10:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:15:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:20:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:25:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:30:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:35:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:40:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:45:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:50:00', '2009-12-31 06:29:40') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:40', NULL, '1975-07-30 06:55:00', '2009-12-31 06:29:40') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:29:40', '1975-07-30', 'Canberra', '2009-12-31 06:29:40') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 73 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:40' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:40) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 163ms (View: 146, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>""}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:29:40) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:40) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 348ms (View: 331, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-29 23:55:00', '2009-12-31 06:29:41') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 00:55:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 01:55:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 02:55:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 03:55:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 04:55:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 05:55:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:00:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:05:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:10:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:15:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:20:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:25:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:30:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:35:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:40:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:45:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:50:00', '2009-12-31 06:29:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:41', NULL, '1975-07-30 06:55:00', '2009-12-31 06:29:41') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:29:41', '1975-07-30', 'Canberra', '2009-12-31 06:29:41') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 81 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:41' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:41) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 145, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: POST /days_of_action/1/registrations with {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations/new"} + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:29:42) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1"} +Redirected to http://www.example.com/days_of_action/1/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/days_of_action/1/registrations] +REQUESTING PAGE: GET http://www.example.com/days_of_action/1/registrations/new with {} and HTTP headers {"HTTP_REFERER"=>"/days_of_action/1/registrations"} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (7.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 341ms (View: 325, DB: 16) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] +REQUESTING PAGE: GET /days_of_action/-1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:42) [GET] + Parameters: {"days_of_action_id"=>"-1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = -1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 01:55:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 02:55:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 03:55:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 04:55:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 05:55:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 06:55:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 07:55:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:00:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:05:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:10:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:15:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:20:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:25:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:30:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:35:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:40:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:45:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:50:00', '2009-12-31 06:29:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:42', NULL, '1975-07-30 08:55:00', '2009-12-31 06:29:42') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:29:42', '1975-07-30', 'Perth', '2009-12-31 06:29:42') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:42' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 06:29:43' WHERE "id" = 96 +REQUESTING PAGE: GET /days_of_action/1/registrations/new with {} and HTTP headers {} + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:29:43) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (8.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 162ms (View: 145, DB: 32) | 200 OK [http://www.example.com/days_of_action/1/registrations/new] diff --git a/log/development.log b/log/development.log new file mode 100644 index 0000000..df36d77 --- /dev/null +++ b/log/development.log @@ -0,0 +1,31440 @@ + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.1ms) select sqlite_version(*) + SQL (0.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.8ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#index (for 127.0.0.1 at 2009-12-28 14:10:06) [GET] + +ActionController::UnknownAction (No action responded to index. Actions: show): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:10:13) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 6ms (View: 4, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:14:38) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:48:46) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 8ms (View: 6, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:50:28) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 6ms (View: 5, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:51:00) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 8ms (View: 7, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:53:11) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 8ms (View: 7, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:56:33) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 9ms (View: 8, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 14:57:09) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:17:57) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:39:23) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (Illegal nesting: nesting within plain text is illegal.) on line #2 of app/views/days_of_action/show.html.haml: +1: +2: +3: +4: +5: + + app/views/days_of_action/show.html.haml:2 + haml (2.2.16) [v] lib/haml/precompiler.rb:343:in `push_plain' + haml (2.2.16) [v] lib/haml/precompiler.rb:276:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] rails/./lib/sass/plugin/rails.rb:19:in `process' + +Rendered rescues/_trace (38.5ms) +Rendered rescues/_request_and_response (1.4ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:41:07) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (Illegal nesting: nesting within plain text is illegal.) on line #5 of app/views/days_of_action/show.html.haml: +2: +3: %table.roster +4: +5: +6: +7: +8: + + app/views/days_of_action/show.html.haml:5 + haml (2.2.16) [v] lib/haml/precompiler.rb:343:in `push_plain' + haml (2.2.16) [v] lib/haml/precompiler.rb:276:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] rails/./lib/sass/plugin/rails.rb:19:in `process' + +Rendered rescues/_trace (99.6ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:41:16) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 4, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:42:13) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:5: syntax error, unexpected tCONSTANT, expecting '}' +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:escape_html=>false, :format=>:xhtml, :attr_wrapper=>"'", :encoding=>nil, :autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + + +_hamlout.push_text("
9 AM9:00 AM9:05 AM
9 AM9:00 AM9:05 AM9:10 AM
\n \n \n \n
#{_hamlout.adjust_tabs(3); haml_temp = 9 AM +_hamlout.format_script_false_true_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}
\n", -2, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:9:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/rails/../lib/sass/plugin/rails.rb:19:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:5: syntax error, unexpected tCONSTANT, expecting '}') on line #5 of app/views/days_of_action/show.html.haml: +2: +3: %table.roster +4: %tr.hour +5: %th=9 AM + + app/views/days_of_action/show.html.haml:9:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] rails/./lib/sass/plugin/rails.rb:19:in `process' + +Rendered rescues/_trace (31.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:42:55) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 4, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:43:41) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 5ms (View: 4, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:44:32) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 7ms (View: 5, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:45:04) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 7ms (View: 6, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:45:41) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 12ms (View: 11, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:47:42) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:47:43) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:47:46) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 12ms (View: 11, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:48:01) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 12ms (View: 10, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:49:58) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 18ms (View: 17, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:50:43) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 23ms (View: 22, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 16:52:33) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 24ms (View: 22, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:02:25) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:02:26) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:02:36) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:02:54) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:05:29) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:05:29) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:24:25) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 24ms (View: 23, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:25:13) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (Invalid tag: "%=stylesheet_link_tag "roster"".) on line #1 of app/views/days_of_action/show.html.haml: +1: %=stylesheet_link_tag "roster" +2: +3: %table.roster +4: %tr.hour + + app/views/days_of_action/show.html.haml:1 + haml (2.2.16) [v] lib/haml/precompiler.rb:547:in `parse_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:675:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] rails/./lib/sass/plugin/rails.rb:19:in `process' + +Rendered rescues/_trace (37.0ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:25:40) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 23ms (View: 22, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:26:36) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 23ms (View: 22, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:26:37) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:27:10) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 95ms (View: 93, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:27:11) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:27:33) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:28:52) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 23, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:28:53) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:28:56) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:29:18) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:29:19) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:30:40) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:31:22) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:33:22) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:33:28) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:33:39) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:34:30) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 17:34:36) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:01:21) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 27ms (View: 26, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:01:21) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:02:04) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 23, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:03:04) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:03:08) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:03:08) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:09:27) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 23, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:09:28) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:09:28) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:09:32) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 26ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:09:32) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:09:33) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:11:02) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:12:41) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:12:54) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:13:19) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:17:45) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:17:46) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:18:32) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:18:33) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:18:34) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:18:35) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:18:49) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 26ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:18:49) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:18:50) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:19:37) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:20:04) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:22:36) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 26ms (View: 25, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:22:36) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:22:37) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:23:48) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:23:49) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:23:50) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:24:34) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:24:35) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:24:38) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:25:42) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:25:57) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:26:09) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 69ms (View: 68, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:26:09) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:26:12) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:26:13) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:34:14) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:34:14) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:34:14) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:34:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:34:23) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:34:23) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:40:11) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:40:11) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:40:12) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:40:12) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:41:20) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:41:20) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:42:29) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:42:29) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:43:22) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:43:22) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:44:01) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:44:02) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:44:13) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:44:13) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:45:51) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:45:51) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 18:46:07) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 18:46:07) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:00:55) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:00:55) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:12:42) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 38ms (View: 36, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:12:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:12:43) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 3ms (View: 1, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:12:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:20:02) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (You don't need to use "- end" in Haml. Use indentation instead: +- if foo? + %strong Foo! +- else + Not foo.) on line #27 of app/views/days_of_action/show.html.haml: +24: %td.free 9:45 +25: %td.free 9:50 +26: %td.free 9:55 +27: - end +28: %tr.hour.odd +29: %th 10 AM +30: %td.free 10:00 + + app/views/days_of_action/show.html.haml:27 + haml (2.2.16) [v] lib/haml/precompiler.rb:228:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (134.0ms) +Rendered rescues/_request_and_response (1.9ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:20:22) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:10: syntax error, unexpected kDO_BLOCK +...alse); form_for :slot, nil, do |f|; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:148: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + +_hamlout.push_text(" \n \n
\n
\n", 2, false); form_for :slot, nil, do |f|; +_hamlout.push_text(" #{haml_temp = f.text_field :email_address +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:148:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:10: syntax error, unexpected kDO_BLOCK +...alse); form_for :slot, nil, do |f|; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:148: syntax error, unexpected kENSURE, expecting $end) on line #10 of app/views/days_of_action/show.html.haml: +7: %body.bp.three-col +8: #container +9: #content +10: - form_for :slot, nil, do |f| +11: = f.text_field :email_address +12: %table.roster +13: %tr.hour.even + + app/views/days_of_action/show.html.haml:148:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (48.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:20:39) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 188ms (View: 186, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:20:39) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:21:01) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (undefined method `title' for :email_address:Symbol) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: - form_for :slot, nil do |f| +11: = f.text_field :email_address.title +12: %table.roster +13: %tr.hour.even +14: %th 9 AM + + app/views/days_of_action/show.html.haml:11:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (156.5ms) +Rendered rescues/_request_and_response (0.4ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:21:23) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 44ms (View: 42, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:21:23) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:26:44) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 137ms (View: 134, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:26:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:27:22) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (undefined method `merge' for "What is your email address?":String) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: - form_for :slot, nil do |f| +11: = f.label :slot, :email_address, "What is your email address?" +12: = f.text_field :email_address, {:class => :title} +13: %table.roster +14: %tr.hour.even + + app/views/days_of_action/show.html.haml:11:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (78.2ms) +Rendered rescues/_request_and_response (0.5ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:28:17) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (wrong number of arguments (4 for 3)) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: - form_for :slot, nil do |f| +11: = f.label (:slot, :email_address, "What is your email address?", :class => :title) +12: = f.text_field :email_address, {:class => :title} +13: %table.roster +14: %tr.hour.even + + app/views/days_of_action/show.html.haml:11:in `label' + app/views/days_of_action/show.html.haml:11:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (78.1ms) +Rendered rescues/_request_and_response (0.9ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:29:18) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show + +ActionView::TemplateError (wrong number of arguments (4 for 3)) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: - form_for :slot, nil do |f| +11: = f.label :slot, :email_address, "What is your email address?", :class => :title +12: = f.text_field :email_address, {:class => :title} +13: %table.roster +14: %tr.hour.even + + app/views/days_of_action/show.html.haml:11:in `label' + app/views/days_of_action/show.html.haml:11:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (76.9ms) +Rendered rescues/_request_and_response (0.4ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:30:56) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 53ms (View: 51, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:30:56) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:32:38) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 12ms (View: 8, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:32:39) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 19:34:05) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 11ms (View: 7, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 19:34:05) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-28 23:26:42) [GET] + Parameters: {"id"=>"1"} +Rendering days_of_action/show +Completed in 4ms (View: 2, DB: 0) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-28 23:26:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (1.1ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.6ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.2ms) select sqlite_version(*) + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) PRAGMA index_list("day_of_actions") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 02:50:17', NULL, NULL, '2009-12-29 02:50:17') + DayOfAction Create (0.7ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 02:50:27', NULL, NULL, '2009-12-29 02:50:27') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) +Migrating to CreateTimeSlots (20091229030847) + SQL (0.1ms) select sqlite_version(*) + SQL (0.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091229030847') + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.0ms) PRAGMA index_list("time_slots") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.8ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) +Migrating to CreateTimeSlots (20091229030847) + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.0ms) PRAGMA index_list("time_slots") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') +Migrating to CreateTimeSlots (20091229030847) + SQL (0.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091229030847') + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.0ms) PRAGMA index_list("time_slots") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.9ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "day_of_action_id" integer, "#_id" integer)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (4.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') +Migrating to CreateTimeSlots (20091229030847) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') +Migrating to CreateTimeSlots (20091229030847) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') +Migrating to CreateTimeSlots (20091229030847) + SQL (0.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091229030847') + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.0ms) PRAGMA index_list("time_slots") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.9ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:14:46) [GET] + +ActionController::RoutingError (No route matches "/daysofaction/1" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:14:55) [GET] + Parameters: {"id"=>"1"} + +NameError (uninitialized constant DaysOfActionController::DaysOfAction): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (35.0ms) +Rendered rescues/_request_and_response (1.4ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:15:11) [GET] + Parameters: {"id"=>"1"} + +ArgumentError (wrong number of arguments (1 for 0)): + app/controllers/days_of_action_controller.rb:4:in `params' + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (30.2ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:15:29) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActiveRecord::RecordNotFound (Couldn't find DayOfAction with ID=1): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (30.8ms) +Rendered rescues/_request_and_response (0.4ms) +Rendering rescues/layout (not_found) +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:00:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:05:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:10:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:15:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:20:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:25:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:30:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:35:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:40:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:45:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:50:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 22:55:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:00:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:05:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:10:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:15:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:20:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:25:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:30:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:35:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:40:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:45:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:50:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-28 23:55:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:00:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:05:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:10:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:15:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:20:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:25:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:30:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:35:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:40:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:45:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:50:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 00:55:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:00:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:05:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:10:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:15:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:20:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:25:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:30:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:35:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:40:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:45:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:50:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 01:55:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:00:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:05:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:10:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:15:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:20:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:25:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:30:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:35:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:40:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:45:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:50:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 02:55:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:00:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:05:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:10:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:15:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:20:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:25:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:30:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:35:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:40:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:45:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:50:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 03:55:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:00:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:05:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:10:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:15:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:20:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:25:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:30:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:35:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:40:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:45:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:34', NULL, '2009-12-29 04:50:00', '2009-12-29 05:16:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 04:55:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:00:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:05:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:10:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:15:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:20:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:25:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:30:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:35:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:40:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:45:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:50:00', '2009-12-29 05:16:35') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 05:16:35', NULL, '2009-12-29 05:55:00', '2009-12-29 05:16:35') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 05:16:35', '2009-12-29', NULL, '2009-12-29 05:16:35') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 05:16:35' WHERE "id" = 96 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:16:38) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Inconsistent indentation: 13 spaces were used for indentation, but the rest of the document was indented using 2 spaces.) on line #12 of app/views/days_of_action/show.html.haml: +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by(|slot| slot.start_time.hour) do | hour, slot | +12: %tr.hour +13: %th hour +14: +15: + + app/views/days_of_action/show.html.haml:12 + haml (2.2.16) [v] lib/haml/precompiler.rb:150:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `instance_eval' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:988:in `block_opened?' + haml (2.2.16) [v] lib/haml/precompiler.rb:244:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (102.4ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:17:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '|', expecting ')' +...f_action.time_slots.group_by(|slot| slot.start_time.hour) do... + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ')', expecting kEND +...y(|slot| slot.start_time.hour) do | hour, slot ; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '=' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.group_by(|slot| slot.start_time.hour) do | hour, slot ; + + + + +_hamlout.push_text(" \n \n", 0, false);end;_hamlout.push_text("
hour
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '|', expecting ')' +...f_action.time_slots.group_by(|slot| slot.start_time.hour) do... + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ')', expecting kEND +...y(|slot| slot.start_time.hour) do | hour, slot ; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '=' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by(|slot| slot.start_time.hour) do | hour, slot | +12: %tr.hour +13: %th hour +14: + + app/views/days_of_action/show.html.haml:155:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (36.4ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:17:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '|', expecting '}' +..._action.time_slots.group_by({|slot| slot.start_time.hour}) d... + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '}', expecting kEND +...({|slot| slot.start_time.hour}) do | hour, slot ; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '=' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.group_by({|slot| slot.start_time.hour}) do | hour, slot ; + + + + +_hamlout.push_text(" \n \n", 0, false);end;_hamlout.push_text("
hour
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '|', expecting '}' +..._action.time_slots.group_by({|slot| slot.start_time.hour}) d... + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '}', expecting kEND +...({|slot| slot.start_time.hour}) do | hour, slot ; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '=' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by({|slot| slot.start_time.hour}) do | hour, slot | +12: %tr.hour +13: %th hour +14: + + app/views/days_of_action/show.html.haml:155:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (33.2ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:19:51) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '|', expecting ')' +...f_action.time_slots.group_by(|slot| slot.start_time.hour).ea... + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ')', expecting kEND +...y(|slot| slot.start_time.hour).each do | hour, slot ; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.group_by(|slot| slot.start_time.hour).each do | hour, slot ; + + + + +_hamlout.push_text(" \n \n", 0, false);end;_hamlout.push_text("
hour
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected '|', expecting ')' +...f_action.time_slots.group_by(|slot| slot.start_time.hour).ea... + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ')', expecting kEND +...y(|slot| slot.start_time.hour).each do | hour, slot ; + ^ +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by(|slot| slot.start_time.hour).each do | hour, slot | +12: %tr.hour +13: %th hour +14: + + app/views/days_of_action/show.html.haml:155:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (98.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:20:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slot ; + + + + +_hamlout.push_text(" \n \n", 0, false);end;_hamlout.push_text("
hour
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slot | +12: %tr.hour +13: %th hour +14: + + app/views/days_of_action/show.html.haml:155:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (33.5ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:20:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (The line was indented 2 levels deeper than the previous line.) on line #12 of app/views/days_of_action/show.html.haml: +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slot | +12: %tr.hour +13: %th hour +14: +15: + + app/views/days_of_action/show.html.haml:12 + haml (2.2.16) [v] lib/haml/precompiler.rb:180:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (38.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:20:38) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (The line was indented 2 levels deeper than the previous line.) on line #12 of app/views/days_of_action/show.html.haml: +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slot | +12: %tr.hour +13: %th hour +14: +15: + + app/views/days_of_action/show.html.haml:12 + haml (2.2.16) [v] lib/haml/precompiler.rb:180:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (102.2ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:21:00) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slot ; + + + + +_hamlout.push_text(" \n \n \n", 0, false);end;_hamlout.push_text("
hour
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: %table.roster +11: - @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slot | +12: %tr.hour +13: %th hour +14: + + app/views/days_of_action/show.html.haml:155:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (33.1ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (8.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (7.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (7.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:24:30) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:14: syntax error, unexpected ';', expecting '|' +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slots ; +_hamlout.push_text("
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:156:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:14: syntax error, unexpected ';', expecting '|') on line #14 of app/views/days_of_action/show.html.haml: +11: - @day_of_action.time_slots.group_by{|slot| slot.start_time.hour}.each do | hour, slots | +12: +13: +14: +15: - form_for :slot, nil do |f| +16: = f.label :email_address, "What is your email address?", :class => :title +17: = f.text_field :email_address, {:class => :title} + + app/views/days_of_action/show.html.haml:156:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (33.5ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:24:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.each do | hour, slots ; + + + + +_hamlout.push_text(" \n \n \n", 0, false);end;_hamlout.push_text("
hour
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting '|' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: %table.roster +11: - @day_of_action.time_slots.each do | hour, slots | +12: %tr.hour +13: %th hour +14: + + app/views/days_of_action/show.html.haml:155:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (99.0ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:25:08) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting tCOLON2 or '[' or '.' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + + +_hamlout.push_text(" \n \n
\n
\n \n", 3, false); @day_of_action.time_slots.each do |slots ; + + + + +_hamlout.push_text(" \n \n \n", 0, false);end;_hamlout.push_text("
hour
\n", -1, false); form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n \n", 1, false); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +_hamlout.push_text(" \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
9 AM9:009:059:109:159:209:259:309:359:409:459:509:55
10 AM10:0010:0510:1010:1510:2010:2510:3010:3510:4010:4510:5010:55
11 AM11:0011:0511:1011:1511:2011:2511:3011:3511:4011:4511:5011:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
12 PM12:0012:0512:1012:1512:2012:2512:3012:3512:4012:4512:5012:55
1 PM1:001:051:101:151:201:251:301:351:401:451:501:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
2 PM2:002:052:102:152:202:252:302:352:402:452:502:55
\n", -1, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:11: syntax error, unexpected ';', expecting tCOLON2 or '[' or '.' +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:155: syntax error, unexpected kENSURE, expecting $end) on line #11 of app/views/days_of_action/show.html.haml: +8: #container +9: #content +10: %table.roster +11: - @day_of_action.time_slots.each do |slots | +12: %tr.hour +13: %th hour +14: + + app/views/days_of_action/show.html.haml:155:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (33.8ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:25:18) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 206ms (View: 196, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:25:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:25:41) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 92ms (View: 82, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:25:41) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:27:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 49ms (View: 39, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:27:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:31:38) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 113ms (View: 103, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:31:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:32:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 52ms (View: 42, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:32:39) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:33:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 52ms (View: 42, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:33:06) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:33:35) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 118ms (View: 108, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:33:35) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:35:18) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 53ms (View: 44, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:35:18) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 16:35:47) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 41ms (View: 29, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 16:35:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (5.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (5.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.8ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.3ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.9ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (5.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.7ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.9ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions"  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions"  + DayOfAction Delete all (3.0ms) DELETE FROM "day_of_actions" WHERE 1=1 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:49:17) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActiveRecord::RecordNotFound (Couldn't find DayOfAction with ID=1): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (95.5ms) +Rendered rescues/_request_and_response (1.4ms) +Rendering rescues/layout (not_found) +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 09:55:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 10:55:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 11:55:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 12:55:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 13:55:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 14:55:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 15:55:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:00:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:05:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:10:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:15:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:20:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:25:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:30:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:35:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:40:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:45:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:50:00', '2009-12-29 06:50:21') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:21', NULL, '-4712-01-01 16:55:00', '2009-12-29 06:50:21') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:50:21', '-4712-01-01 00:00:00', NULL, '2009-12-29 06:50:21') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 97 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 98 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 99 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 100 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 101 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 102 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 103 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 104 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 105 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 106 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 107 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 108 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 109 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 110 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 111 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 112 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 113 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 114 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 115 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 116 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 117 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 118 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 119 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 120 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 121 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 122 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 123 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 124 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 125 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 126 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 127 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 128 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 129 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 130 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 131 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 132 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 133 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 134 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 135 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 136 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 137 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 138 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 139 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 140 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 141 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 142 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 143 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 144 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 145 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 146 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 147 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 148 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 149 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 150 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 151 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 152 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 153 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 154 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 155 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 156 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 157 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 158 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 159 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 160 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 161 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 162 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 163 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 164 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 165 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 166 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 167 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 168 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 169 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 170 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 171 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 172 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 173 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 174 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 175 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 176 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 177 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 178 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 179 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 180 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 181 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 182 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 183 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 184 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 185 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 186 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 187 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 188 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 189 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 190 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 191 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 06:50:21' WHERE "id" = 192 + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 22:55:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-28 23:55:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 00:55:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 01:55:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 02:55:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 03:55:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 04:55:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:00:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:05:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:10:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:15:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:20:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:25:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:30:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:35:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:40:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:45:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:50:00', '2009-12-29 06:50:30') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:50:30', NULL, '2009-12-29 05:55:00', '2009-12-29 06:50:30') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:50:30', '2009-12-29', NULL, '2009-12-29 06:50:30') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 193 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 194 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 195 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 196 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 197 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 198 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 199 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 200 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 201 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 202 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 203 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 204 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 205 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 206 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 207 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 208 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 209 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 210 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 211 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 212 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 213 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 214 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 215 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 216 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 217 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 218 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 219 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 220 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 221 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 222 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 223 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 224 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 225 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 226 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 227 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 228 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 229 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 230 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 231 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 232 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 233 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 234 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 235 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 236 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 237 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 238 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 239 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 240 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 241 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 242 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 243 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 244 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 245 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 246 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 247 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 248 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 249 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 250 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 251 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 252 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 253 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 254 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 255 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 256 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 257 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 258 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 259 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 260 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 261 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 262 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 263 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 264 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 265 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 266 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 267 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 268 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 269 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 270 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 271 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 272 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 273 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 274 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 275 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 276 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 277 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 278 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 279 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 280 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 281 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 282 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 283 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 284 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 285 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 286 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 287 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 06:50:30' WHERE "id" = 288 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:50:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActiveRecord::RecordNotFound (Couldn't find DayOfAction with ID=1): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (28.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:50:42) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 216ms (View: 206, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 17:50:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:50:47) [GET] + Parameters: {"id"=>"3"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 3)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 3)  +Completed in 31ms (View: 21, DB: 5) | 200 OK [http://localhost/days_of_action/3] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 17:50:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:50:58) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 94ms (View: 84, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 17:50:58) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:54:13) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 95ms (View: 85, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 17:54:14) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 17:54:17) [GET] + Parameters: {"id"=>"3"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 3)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 3)  +Completed in 31ms (View: 21, DB: 6) | 200 OK [http://localhost/days_of_action/3] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 17:54:17) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 22:55:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-28 23:55:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 00:55:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 01:55:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 02:55:00', '2009-12-29 06:59:05') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 03:55:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 04:55:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:00:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:05:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:10:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:15:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:20:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:25:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:30:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:35:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:40:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:45:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:50:00', '2009-12-29 06:59:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 06:59:05', NULL, '2009-12-29 05:55:00', '2009-12-29 06:59:05') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 06:59:05', '2009-12-29', NULL, '2009-12-29 06:59:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 289 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 290 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 291 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 292 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 293 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 294 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 295 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 296 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 297 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 298 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 299 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 300 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 301 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 302 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 303 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 304 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 305 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 306 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 307 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 308 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 309 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 310 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 311 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 312 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 313 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 314 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 315 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 316 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 317 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 318 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 319 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 320 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 321 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 322 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 323 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 324 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 325 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 326 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 327 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 328 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 329 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 330 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 331 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 332 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 333 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 334 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 335 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 336 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 337 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 338 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 339 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 340 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 341 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 342 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 343 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 344 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 345 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 346 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 347 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 348 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 349 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 350 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 351 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 352 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 353 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 354 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 355 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 356 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 357 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 358 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 359 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 360 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 361 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 362 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 363 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 364 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 365 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 366 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 367 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 368 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 369 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 370 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 371 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 372 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 373 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 374 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 375 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 376 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 377 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 378 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 379 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 380 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 381 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 382 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 383 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 06:59:05' WHERE "id" = 384 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 18:03:17) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 93ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 18:03:17) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:04:24', NULL, NULL, '2009-12-29 07:04:24') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:04:33', NULL, NULL, '2009-12-29 07:04:33') + TimeSlot Update (0.7ms) UPDATE "time_slots" SET "start_time" = '2009-12-28 13:00:00', "updated_at" = '2009-12-29 07:04:54' WHERE "id" = 386 + TimeSlot Create (0.7ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:05:53', NULL, NULL, '2009-12-29 07:05:53') + TimeSlot Update (0.5ms) UPDATE "time_slots" SET "start_time" = '2009-12-28 13:00:00', "updated_at" = '2009-12-29 07:06:28' WHERE "id" = 387 + DayOfAction Load (0.6ms) SELECT * FROM "day_of_actions"  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  + TimeSlot Load (8.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  + TimeSlot Load (8.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "date" date, "#" date)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + TimeSlot Create (285.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 07:13:54', NULL, '2009-12-28 13:00:00', '2009-12-29 07:13:54') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 08:25:57', NULL, '2009-12-29 08:25:16', '2009-12-29 08:25:57') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 08:28:32', NULL, '2009-12-29 08:27:09', '2009-12-29 08:28:32') + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 390)  + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:11) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 227ms (View: 210, DB: 6) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:11) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:13) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 155ms (View: 145, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:13) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:14) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 91ms (View: 81, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:14) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:14) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 92ms (View: 82, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:15) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 93ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:16) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 155ms (View: 145, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:16) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:16) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 93ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:16) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 97ms (View: 85, DB: 6) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:16) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:02:18) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 157ms (View: 147, DB: 5) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:02:18) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 01:55:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 02:55:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 03:55:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 04:55:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 05:55:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 06:55:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 07:55:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:00:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:05:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:10:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:15:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:20:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:25:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:30:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:35:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:40:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:45:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:50:00', '2009-12-29 10:04:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:04:18', NULL, '2009-12-29 08:55:00', '2009-12-29 10:04:18') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 10:04:18', '2009-12-29', NULL, '2009-12-29 10:04:18') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 391 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 392 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 393 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 394 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 395 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 396 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 397 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 398 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 399 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 400 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 401 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 402 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 403 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 404 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 405 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 406 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 407 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 408 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 409 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 410 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 411 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 412 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 413 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 414 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 415 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 416 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 417 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 418 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 419 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 420 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 421 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 422 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 423 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 424 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 425 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 426 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 427 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 428 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 429 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 430 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 431 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 432 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 433 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 434 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 435 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 436 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 437 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 438 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 439 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 440 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 441 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 442 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 443 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 444 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 445 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 446 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 447 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 448 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 449 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 450 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 451 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 452 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 453 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 454 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 455 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 456 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 457 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 458 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 459 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 460 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 461 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 462 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 463 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 464 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 465 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 466 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 467 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 468 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 469 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 470 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 471 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 472 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 473 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 474 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 475 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 476 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 477 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 478 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 479 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 480 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 481 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 482 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 483 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 484 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 485 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 5, "updated_at" = '2009-12-29 10:04:18' WHERE "id" = 486 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:04:33) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5)  +Completed in 30ms (View: 20, DB: 5) | 200 OK [http://localhost/days_of_action/5] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:04:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  + TimeSlot Load (0.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5) LIMIT 1 + TimeSlot Load (0.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5) LIMIT 1 + TimeSlot Load (0.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5) LIMIT 1 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:07:32) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  +Rendering days_of_action/show + TimeSlot Load (5.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5)  +Completed in 55ms (View: 43, DB: 6) | 200 OK [http://localhost/days_of_action/5] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:07:32) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:07:54) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5)  +Completed in 120ms (View: 110, DB: 5) | 200 OK [http://localhost/days_of_action/5] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:07:54) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:08:24) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5)  +Completed in 37ms (View: 27, DB: 5) | 200 OK [http://localhost/days_of_action/5] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:08:24) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:08:24) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5)  +Completed in 32ms (View: 22, DB: 5) | 200 OK [http://localhost/days_of_action/5] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:08:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:08:30) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5)  +Completed in 89ms (View: 79, DB: 5) | 200 OK [http://localhost/days_of_action/5] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:08:30) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:08:34) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 5)  +Completed in 32ms (View: 22, DB: 5) | 200 OK [http://localhost/days_of_action/5] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:08:34) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 22:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 22:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 22:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 22:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 22:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 22:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:25:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-28 23:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:25:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 00:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:25:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 01:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:25:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 02:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:25:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 03:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:25:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 04:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:25:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:30:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:35:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:40:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:45:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:50:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 05:55:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 06:00:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 06:05:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 06:10:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 06:15:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 06:20:00', '2009-12-29 10:16:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:16:41', NULL, '2009-12-29 06:25:00', '2009-12-29 10:16:41') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 10:16:41', '2009-12-29', NULL, '2009-12-29 10:16:41') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 487 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 488 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 489 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 490 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 491 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 492 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 493 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 494 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 495 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 496 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 497 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 498 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 499 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 500 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 501 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 502 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 503 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 504 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 505 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 506 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 507 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 508 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 509 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 510 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 511 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 512 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 513 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 514 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 515 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 516 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 517 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 518 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 519 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 520 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 521 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 522 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 523 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 524 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 525 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 526 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 527 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 528 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 529 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 530 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 531 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 532 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 533 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 534 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 535 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 536 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 537 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 538 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 539 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 540 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 541 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 542 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 543 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 544 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 545 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 546 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 547 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 548 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 549 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 550 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 551 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 552 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 553 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 554 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 555 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 556 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 557 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 558 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 559 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 560 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 561 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 562 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 563 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 564 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 565 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 566 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 567 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 568 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 569 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 570 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 571 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 572 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 573 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 574 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 575 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 576 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 577 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 578 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 579 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 580 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 581 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 6, "updated_at" = '2009-12-29 10:16:41' WHERE "id" = 582 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:17:35) [GET] + Parameters: {"id"=>"6"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 6)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 6)  +Completed in 40ms (View: 29, DB: 5) | 200 OK [http://localhost/days_of_action/6] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:17:35) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 6)  + TimeSlot Load (0.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 6) LIMIT 1 + TimeSlot Load (0.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 6) LIMIT 1 + TimeSlot Load (0.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 6) LIMIT 1 + TimeSlot Load (0.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 6) LIMIT 1 + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') +Migrating to CreateTimeSlots (20091229030847) + SQL (0.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091229030847') + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.0ms) PRAGMA index_list("time_slots") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:31:09) [GET] + Parameters: {"id"=>"6"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 6)  + +ActiveRecord::RecordNotFound (Couldn't find DayOfAction with ID=6): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (30.2ms) +Rendered rescues/_request_and_response (1.3ms) +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:31:15) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  + +ActiveRecord::RecordNotFound (Couldn't find DayOfAction with ID=5): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (28.9ms) +Rendered rescues/_request_and_response (0.2ms) +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:50:32) [GET] + Parameters: {"id"=>"5"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 5)  + +ActiveRecord::RecordNotFound (Couldn't find DayOfAction with ID=5): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (28.6ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:50:34) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActiveRecord::RecordNotFound (Couldn't find DayOfAction with ID=1): + app/controllers/days_of_action_controller.rb:4:in `show' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (28.8ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (not_found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 22:55:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-28 23:55:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 00:55:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 01:55:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 02:55:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 03:55:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 04:55:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:00:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:05:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:10:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:15:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:20:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:25:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:30:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:35:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:40:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:45:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:50:00', '2009-12-29 10:51:14') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:51:14', NULL, '2009-12-29 05:55:00', '2009-12-29 10:51:14') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:51:14', '2009-12-29', 'Canberra', '2009-12-29 10:51:14') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 77 + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 10:51:14' WHERE "id" = 96 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:51:18) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 44ms (View: 33, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:51:18) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:51:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 41ms (View: 30, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:51:39) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:51:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Inconsistent indentation: 11 spaces were used for indentation, but the rest of the document was indented using 2 spaces.) on line #17 of app/views/days_of_action/show.html.haml: +14: - slots.each do |slot| +15: %td.free= slot.start_time.strftime("%I:%M") +16: %tr +17: %th +18: Remember this table is in = link_to "Perth Time", "http://what.timeisit.in/Perth" +19: +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:150:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `instance_eval' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:988:in `block_opened?' + haml (2.2.16) [v] lib/haml/precompiler.rb:739:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (100.0ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:52:07) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 39ms (View: 29, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:52:07) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:52:15) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 42ms (View: 30, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:52:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:52:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 39ms (View: 29, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:52:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:52:48) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 39ms (View: 29, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:52:48) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:52:48) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 93ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:52:48) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:54:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 40ms (View: 30, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:54:58) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 21:58:47) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 40ms (View: 30, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 21:58:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 22:00:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 40ms (View: 29, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 22:00:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-29 22:02:13) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 34ms (View: 24, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-29 22:02:13) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 03:10:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 35ms (View: 24, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 03:10:10) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (2.8ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 10:43:49) [GET] + Parameters: {"id"=>"17"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 17)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:11:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 58ms (View: 47, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:11:58) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:14:25) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + +ActionView::TemplateError (wrong number of arguments (1 for 2)) on line #18 of app/views/days_of_action/show.html.haml: +15: - slots.each do |slot| +16: %td.free +17: = f.label :time_slot, slot.start_time.strftime("%I:%M") +18: = f.radio_button slot +19: +20: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +21: + + app/views/days_of_action/show.html.haml:18:in `radio_button' + app/views/days_of_action/show.html.haml:18:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:15:in `each' + app/views/days_of_action/show.html.haml:15:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:12:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (40.4ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:14:37) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 108ms (View: 97, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:14:37) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:17:01) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 196ms (View: 186, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:17:01) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:20:41) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 80ms (View: 68, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:20:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:21:00) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 86ms (View: 75, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:21:01) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:21:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 85ms (View: 74, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:21:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:22:02) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 84ms (View: 74, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:22:03) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:22:51) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 81ms (View: 71, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:22:52) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:29:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 84ms (View: 73, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:29:21) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:30:01) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 149ms (View: 138, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:30:01) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:38:15) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + +_hamlout.push_text(" \n \n
\n
\n", 2, false); form_for :time_slot, nil do |f|; + +_hamlout.push_text(" \n", 1, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots|; + +_hamlout.push_text(" \n \n", 0, false); slots.each do |slot|; + +_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text("
#{_hamlout.adjust_tabs(2); haml_temp = hour +_hamlout.format_script_false_true_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n ", 1, false);haml_temp = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M"); +_hamlout.push_text(" #{haml_temp = f.radio_button :id, slot.id +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); +end;_hamlout.buffer << _hamlout.format_script_false_false_false_false_false_false_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));_hamlout.push_text("\n
\n #{_hamlout.adjust_tabs(-1); haml_temp = "Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"}" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + +end; form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27: syntax error, unexpected kENSURE, expecting $end) on line #27 of app/views/days_of_action/show.html.haml: +24: = f.label :email_address, "What is your email address?", :class => :title +25: = f.text_field :email_address, {:class => :title} +26: +27: + + app/views/days_of_action/show.html.haml:27:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (32.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:38:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 84ms (View: 73, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:38:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:38:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + +_hamlout.push_text(" \n \n
\n
\n", 2, false); form_for :time_slot, nil do |f|; + +_hamlout.push_text(" \n", 1, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots|; + +_hamlout.push_text(" \n \n", 0, false); slots.each do |slot|; + +_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text("
#{_hamlout.adjust_tabs(2); haml_temp = hour +_hamlout.format_script_false_true_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n ", 1, false);haml_temp = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M"); +_hamlout.push_text(" #{haml_temp = f.radio_button :id, slot.id +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); +end;_hamlout.buffer << _hamlout.format_script_false_false_false_false_false_false_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));_hamlout.push_text("\n
\n #{_hamlout.adjust_tabs(-1); haml_temp = "Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"}" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + +end; form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27: syntax error, unexpected kENSURE, expecting $end) on line #27 of app/views/days_of_action/show.html.haml: +24: = f.label :email_address, "What is your email address?", :class => :title +25: = f.text_field :email_address, {:class => :title} +26: +27: + + app/views/days_of_action/show.html.haml:27:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (34.5ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:39:11) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #23 of app/views/days_of_action/show.html.haml: +20: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +21: +22: +23: # - form_for :slot, nil do |f| +24: # = f.label :email_address, "What is your email address?", :class => :title +25: # = f.text_field :email_address, {:class => :title} +26: + + app/views/days_of_action/show.html.haml:23 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:805:in `render_div' + haml (2.2.16) [v] lib/haml/precompiler.rb:212:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (104.1ms) +Rendered rescues/_request_and_response (0.2ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:39:17) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:22: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + +_hamlout.push_text(" \n \n
\n
\n", 2, false); form_for :time_slot, nil do |f|; + +_hamlout.push_text(" \n", 1, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots|; + +_hamlout.push_text(" \n \n", 0, false); slots.each do |slot|; + +_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text("
#{_hamlout.adjust_tabs(2); haml_temp = hour +_hamlout.format_script_false_true_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n ", 1, false);haml_temp = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M"); +_hamlout.push_text(" #{haml_temp = f.radio_button :id, slot.id +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); +end;_hamlout.buffer << _hamlout.format_script_false_false_false_false_false_false_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));_hamlout.push_text("\n
\n #{_hamlout.adjust_tabs(-1); haml_temp = "Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"}" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:22:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:22: syntax error, unexpected kENSURE, expecting $end) on line #22 of app/views/days_of_action/show.html.haml: +19: +20: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +21: +22: +23: +24: +25: + + app/views/days_of_action/show.html.haml:22:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (32.8ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:40:01) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27: syntax error, unexpected kENSURE, expecting $end +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + +_hamlout.push_text(" \n \n
\n
\n", 2, false); form_for :time_slot, nil do |f|; + +_hamlout.push_text(" \n", 1, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots|; + +_hamlout.push_text(" \n \n", 0, false); slots.each do |slot|; + +_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text("
#{_hamlout.adjust_tabs(2); haml_temp = hour +_hamlout.format_script_false_true_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n ", 1, false);haml_temp = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M"); +_hamlout.push_text(" #{haml_temp = f.radio_button :id, slot.id +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); +end;_hamlout.buffer << _hamlout.format_script_false_false_false_false_false_false_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));_hamlout.push_text("\n
\n #{_hamlout.adjust_tabs(-1); haml_temp = "Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"}" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + +end; form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:27: syntax error, unexpected kENSURE, expecting $end) on line #27 of app/views/days_of_action/show.html.haml: +24: = f.label :email_address, "What is your email address?", :class => :title +25: = f.text_field :email_address, {:class => :title} +26: +27: + + app/views/days_of_action/show.html.haml:27:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (98.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:40:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 82ms (View: 72, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:40:58) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:41:23) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:17: syntax error, unexpected tIDENTIFIER, expecting '}' +...start_time.strftime("%I:%M") f.radio_button :id, slot.id + ^ +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + +_hamlout.push_text(" \n \n
\n
\n", 2, false); form_for :time_slot, nil do |f|; + +_hamlout.push_text(" \n", 1, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots|; + +_hamlout.push_text(" \n \n", 0, false); slots.each do |slot|; + +_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text("
#{_hamlout.adjust_tabs(2); haml_temp = hour +_hamlout.format_script_false_true_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{_hamlout.adjust_tabs(1); haml_temp = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M") f.radio_button :id, slot.id +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + +_hamlout.push_text("
\n #{_hamlout.adjust_tabs(-1); haml_temp = "Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"}" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + +end; form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:29:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:17: syntax error, unexpected tIDENTIFIER, expecting '}' +...start_time.strftime("%I:%M") f.radio_button :id, slot.id + ^) on line #17 of app/views/days_of_action/show.html.haml: +14: %th= hour +15: - slots.each do |slot| +16: %td.free +17: = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M") f.radio_button :id, slot.id +18: +19: +20: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} + + app/views/days_of_action/show.html.haml:29:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (34.0ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:41:42) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show +ERROR: compiling _run_haml_app47views47days_of_action47show46html46haml RAISED compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:17: syntax error, unexpected '=', expecting '}' +...start_time.strftime("%I:%M") = f.radio_button :id, slot.id + ^ +Function body: def _run_haml_app47views47days_of_action47show46html46haml(local_assigns) + old_output_buffer = output_buffer;;begin;extend Haml::Helpers;_hamlout = @haml_buffer = Haml::Buffer.new(@haml_buffer, {:autoclose=>["meta", "img", "link", "br", "hr", "input", "area", "param", "col", "base"], :ugly=>false, :escape_html=>false, :format=>:xhtml, :encoding=>nil, :attr_wrapper=>"'", :preserve=>["textarea", "pre", "code"]});_erbout = _hamlout.buffer;__in_erb_template = true;; + + +_hamlout.push_text("\n\n \n #{_hamlout.adjust_tabs(2); haml_temp = stylesheet_link_tag "compiled/screen" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = stylesheet_link_tag "compiled/roster" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + + + +_hamlout.push_text(" \n \n
\n
\n", 2, false); form_for :time_slot, nil do |f|; + +_hamlout.push_text(" \n", 1, false); @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots|; + +_hamlout.push_text(" \n \n", 0, false); slots.each do |slot|; + +_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text(" \n", -1, false);end;_hamlout.push_text("
#{_hamlout.adjust_tabs(2); haml_temp = hour +_hamlout.format_script_false_true_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{_hamlout.adjust_tabs(1); haml_temp = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M") = f.radio_button :id, slot.id +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + +_hamlout.push_text("
\n #{_hamlout.adjust_tabs(-1); haml_temp = "Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"}" +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false); + +end; form_for :slot, nil do |f|; +_hamlout.push_text(" #{haml_temp = f.label :email_address, "What is your email address?", :class => :title +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n #{haml_temp = f.text_field :email_address, {:class => :title} +_hamlout.format_script_false_false_false_false_false_true_false((haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp));}\n", 0, false);end;_hamlout.push_text("
\n
\n \n\n", -4, false);_erbout;ensure;@haml_buffer = @haml_buffer.upper;end; + ensure + self.output_buffer = old_output_buffer + end +Backtrace: /Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:29:in `compile!' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:61:in `compile' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/renderable.rb:28:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render_without_haml' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb:13:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:10:in `realtime' +/Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/core_ext/benchmark.rb:17:in `ms' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `sass_old_process' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb:19:in `process_without_compass' +/Users/perrynfowler/Projects/phoneflood/vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call' +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/head.rb:9:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/static.rb:31:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/rails/rack/log_tailer.rb:17:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/chunked.rb:15:in `call' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:64:in `process' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new' +/Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run' +/Library/Ruby/Gems/1.8/gems/rack-1.0.1/lib/rack/handler/mongrel.rb:34:in `run' +/Library/Ruby/Gems/1.8/gems/rails-2.3.4/lib/commands/server.rb:111 +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' +/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' +script/server:3 + +ActionView::TemplateError (compile error +/Users/perrynfowler/Projects/phoneflood/app/views/days_of_action/show.html.haml:17: syntax error, unexpected '=', expecting '}' +...start_time.strftime("%I:%M") = f.radio_button :id, slot.id + ^) on line #17 of app/views/days_of_action/show.html.haml: +14: %th= hour +15: - slots.each do |slot| +16: %td.free +17: = f.label "id_#{slot.id}", slot.start_time.strftime("%I:%M") = f.radio_button :id, slot.id +18: +19: +20: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} + + app/views/days_of_action/show.html.haml:29:in `compile!' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (94.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:41:55) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 82ms (View: 71, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:41:55) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 11:44:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 82ms (View: 72, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 11:44:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:02:03) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 152ms (View: 141, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:02:04) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.7ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.8ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.6ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.7ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:32:24) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 92ms (View: 79, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:32:24) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:32:26) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 87, DB: 7) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:32:26) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.7ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.8ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:35:40) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (86.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 195ms (View: 101, DB: 87) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:35:40) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:36:32) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 88, DB: 7) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:36:32) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.7ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms) select sqlite_version(*) + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:39:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 122ms (View: 106, DB: 7) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:39:06) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:40:53) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (7.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 126ms (View: 111, DB: 8) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:40:53) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.9ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:49:15) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 147ms (View: 136, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:49:16) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:57:36) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 84ms (View: 72, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:57:36) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#1 (for 127.0.0.1 at 2009-12-30 12:57:50) [POST] + Parameters: {"commit"=>"Register", "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0=", "slot"=>{"email_address"=>""}} + +ActionController::UnknownAction (No action responded to 1. Actions: record_not_found and show): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 12:59:02) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 82ms (View: 71, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 12:59:02) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#1 (for 127.0.0.1 at 2009-12-30 12:59:04) [POST] + Parameters: {"commit"=>"Register", "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0=", "slot"=>{"email_address"=>""}} + +ActionController::UnknownAction (No action responded to 1. Actions: record_not_found and show): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:00:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 82ms (View: 71, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:00:28) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#1 (for 127.0.0.1 at 2009-12-30 13:00:31) [POST] + Parameters: {"commit"=>"Register", "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0=", "slot"=>{"email_address"=>""}} + +ActionController::UnknownAction (No action responded to 1. Actions: record_not_found and show): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:01:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 90ms (View: 79, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:01:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:02:27) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + +ActionView::TemplateError (undefined method `time_slot_id' for #) on line #19 of app/views/days_of_action/show.html.haml: +16: - slots.each do |slot| +17: %td.free +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: +21: +22: + + app/views/days_of_action/show.html.haml:19:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:16:in `each' + app/views/days_of_action/show.html.haml:16:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:13:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (42.9ms) +Rendered rescues/_request_and_response (0.2ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:02:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + +ActionView::TemplateError (undefined method `time_slot_id' for #) on line #19 of app/views/days_of_action/show.html.haml: +16: - slots.each do |slot| +17: %td.free +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: +21: +22: + + app/views/days_of_action/show.html.haml:19:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:16:in `each' + app/views/days_of_action/show.html.haml:16:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:13:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (42.6ms) +Rendered rescues/_request_and_response (0.4ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:03) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 168ms (View: 158, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:04) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 89ms (View: 78, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 90ms (View: 79, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 159ms (View: 149, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:46) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 88ms (View: 78, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:47) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 89ms (View: 78, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:48) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 92ms (View: 81, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:48) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:49) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 163ms (View: 152, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:49) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:49) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 89ms (View: 78, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:50) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:03:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 89ms (View: 79, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:03:50) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:04:24) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + +ActionView::TemplateError (undefined method `time_slot_id' for #) on line #19 of app/views/days_of_action/show.html.haml: +16: - slots.each do |slot| +17: %td.free +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: +21: +22: + + app/views/days_of_action/show.html.haml:19:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:16:in `each' + app/views/days_of_action/show.html.haml:16:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:13:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (44.2ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:04:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 90ms (View: 80, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:04:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#1 (for 127.0.0.1 at 2009-12-30 13:05:03) [POST] + Parameters: {"commit"=>"Register", "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0=", "slot"=>{"email_address"=>""}} + +ActionController::UnknownAction (No action responded to 1. Actions: record_not_found and show): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:05:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 82ms (View: 72, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:05:28) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:08:19) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 83ms (View: 72, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:08:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#1 (for 127.0.0.1 at 2009-12-30 13:08:37) [POST] + Parameters: {"commit"=>"Register", "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0=", "slot"=>{"email_address"=>""}} + +ActionController::UnknownAction (No action responded to 1. Actions: record_not_found and show): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:08:46) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 77ms (View: 67, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:08:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#1 (for 127.0.0.1 at 2009-12-30 13:08:47) [POST] + Parameters: {"commit"=>"Register", "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0=", "slot"=>{"email_address"=>""}} + +ActionController::UnknownAction (No action responded to 1. Actions: record_not_found and show): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:09:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 207ms (View: 189, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:09:58) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:17:38) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 153ms (View: 142, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:17:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:18:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 211ms (View: 193, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:18:10) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:19:40) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 158ms (View: 147, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:19:40) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:20:08) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 86ms (View: 76, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:20:08) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:21:16) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 87ms (View: 76, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:21:17) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:21:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 159ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:21:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:22:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 89, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:22:11) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:23:15) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:23:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:23:20) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + +ActionController::RoutingError (No route matches "/registrations" with {:method=>:post}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:24:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 229ms (View: 211, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:24:11) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-30 13:24:12) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + +NameError (uninitialized constant RegistrationsController): + + +Rendered rescues/_trace (97.8ms) +Rendered rescues/_request_and_response (1.4ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:24:21) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:24:25) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:24:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-30 13:27:24) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + +NameError (uninitialized constant RegistrationsController): + + +Rendered rescues/_trace (22.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:44:19) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 93ms (View: 82, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:44:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:44:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:46:26) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 84, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:46:26) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:46:30) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:46:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 84, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:46:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:46:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:47:00) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"1", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 1)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 9ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:47:00) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 158ms (View: 148, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:47:01) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:47:02) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:47:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"1", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 1)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 11ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:47:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 108ms (View: 95, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:47:06) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 13:48:44) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"30", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 30)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 9ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 13:48:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 167ms (View: 157, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 13:48:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:03:03) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (The line was indented 2 levels deeper than the previous line.) on line #26 of app/views/days_of_action/show.html.haml: +23: = f.submit 'Register' +24: +25: - if flash[:notice] +26: %div.notice +27: = flash[:notice] +28: +29: + + app/views/days_of_action/show.html.haml:26 + haml (2.2.16) [v] lib/haml/precompiler.rb:180:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (109.7ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:03:15) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 89, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:03:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:03:18) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"25", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 25)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 9ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:03:18) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 93ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:03:18) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:03:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:03:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"41", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 41)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 8ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:03:54) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 95ms (View: 84, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:03:54) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:03:57) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"58", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 58)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 9ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:03:58) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:03:58) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:05:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:05:11) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:05:13) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"40", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 40)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 8ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:05:13) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:05:13) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:05:24) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"13", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 13)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 8ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:05:24) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 85, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:05:24) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:05:31) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 169ms (View: 158, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:05:31) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:05:35) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"94", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 94)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 8ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:05:35) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 168ms (View: 157, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:05:35) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:05:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 85, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:05:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:05:45) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"52", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 52)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 9ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:05:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 86, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:05:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:09:46) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 100ms (View: 89, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:09:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:09:48) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"26", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 26)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 9ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:09:48) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 95ms (View: 83, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:09:48) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:11:44) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 172ms (View: 161, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:11:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 14:11:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"62", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 62)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 8ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:11:49) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 165ms (View: 154, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:11:50) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:22:09) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td.#{slot.status} +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (110.6ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:23:08) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td.#{slot.id} +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (37.6ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:26:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td.= slot.id +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (38.4ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:26:29) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td.= slot.id +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (115.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:28:58) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:29:02) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td.#{"foo"} +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (101.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:32:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 114ms (View: 103, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:32:51) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:33:16) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 118ms (View: 106, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:33:17) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:38:52) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td.="free" +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (108.6ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:38:57) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal nesting: content can't be both given on the same line as %td and nested within it.) on line #18 of app/views/days_of_action/show.html.haml: +15: %th= hour +16: - slots.each do |slot| +17: %td="free" +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: +21: = f.label :email_address, "What is your email address?", :class => :title + + app/views/days_of_action/show.html.haml:18 + haml (2.2.16) [v] lib/haml/precompiler.rb:740:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (37.5ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:39:11) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td."free" +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (37.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:42:00) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 165ms (View: 154, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:42:00) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:42:31) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Illegal element: classes and ids must have values.) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td.#{slot.id} +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17 + haml (2.2.16) [v] lib/haml/precompiler.rb:677:in `render_tag' + haml (2.2.16) [v] lib/haml/precompiler.rb:213:in `process_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:177:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (110.7ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:51:19) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 43ms (View: 33, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:51:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:51:40) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Inconsistent indentation: 19 spaces were used for indentation, but the rest of the document was indented using 2 spaces.) on line #19 of app/views/days_of_action/show.html.haml: +16: - slots.each do |slot| +17: :erb +18: > +19: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +20: = f.radio_button :time_slot_id, slot.id +21: +22: + + app/views/days_of_action/show.html.haml:19 + haml (2.2.16) [v] lib/haml/precompiler.rb:150:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `instance_eval' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:918:in `next_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:167:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (38.8ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:52:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Inconsistent indentation: 19 spaces were used for indentation, but the rest of the document was indented using 2 spaces.) on line #19 of app/views/days_of_action/show.html.haml: +16: - slots.each do |slot| +17: :erb +18: > +19: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +20: = f.radio_button :time_slot_id, slot.id +21: :erb +22: + + app/views/days_of_action/show.html.haml:19 + haml (2.2.16) [v] lib/haml/precompiler.rb:150:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `instance_eval' + haml (2.2.16) [v] lib/haml/precompiler.rb:132:in `tabs' + haml (2.2.16) [v] lib/haml/precompiler.rb:918:in `next_line' + haml (2.2.16) [v] lib/haml/precompiler.rb:167:in `precompile' + haml (2.2.16) [v] lib/haml/engine.rb:114:in `initialize' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `new' + haml (2.2.16) [v] rails/./lib/haml/template/plugin.rb:24:in `compile' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (104.7ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:52:50) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 43ms (View: 33, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:52:50) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:53:20) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 108ms (View: 97, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:53:20) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:53:26) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 103ms (View: 92, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:53:26) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:56:16) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 104ms (View: 94, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:56:16) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:56:31) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + +ActionView::TemplateError (undefined method `status' for #) on line #17 of app/views/days_of_action/show.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td{:class=> slot.status} +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/views/days_of_action/show.html.haml:17:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:16:in `each' + app/views/days_of_action/show.html.haml:16:in `_run_haml_app47views47days_of_action47show46html46haml' + app/views/days_of_action/show.html.haml:13:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (41.7ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 14:58:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 169ms (View: 158, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 14:58:34) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:28:11) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 98ms (View: 87, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 15:28:12) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 15:28:20) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"26", "email_address"=>"foo@bar.com"}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 26)  + +ActiveRecord::UnknownAttributeError (unknown attribute: time_slot_id): + app/controllers/registrations_controller.rb:5:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (29.2ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:33:47) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 168ms (View: 158, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 15:33:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 15:33:50) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"94", "email_address"=>"foo@bar.com"}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 94)  + +ActiveRecord::UnknownAttributeError (unknown attribute: email_address): + app/controllers/registrations_controller.rb:7:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (30.2ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') +Migrating to CreateTimeSlots (20091229030847) + SQL (0.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20091229030847') + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.0ms) PRAGMA index_list("time_slots") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:35:55) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 01:55:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 02:55:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 03:55:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 04:55:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 05:55:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 06:55:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 07:55:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:00:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:05:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:10:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:15:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:20:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:25:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:30:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:35:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:40:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:45:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:50:00', NULL, '2009-12-30 04:37:33') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 04:37:33', NULL, '2009-12-30 08:55:00', NULL, '2009-12-30 04:37:33') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 04:37:33', '2009-12-30', 'Perth', '2009-12-30 04:37:33') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 39 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-30 04:37:33' WHERE "id" = 96 + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:37:37) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 100ms (View: 89, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 15:37:37) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 15:37:41) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"16", "email_address"=>"foo@bar.com"}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 16)  + TimeSlot Update (0.4ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-30 04:37:41' WHERE "id" = 16 + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 16ms (DB: 1) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:37:41) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 96ms (View: 85, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 15:37:41) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (8.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 15:38:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"1", "email_address"=>"boo@far.com"}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 1)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = 'boo@far.com', "updated_at" = '2009-12-30 04:38:21' WHERE "id" = 1 + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 14ms (DB: 1) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 15:38:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 98ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 15:38:21) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:36:35) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 102ms (View: 90, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:36:35) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:36:39) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"1", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 1)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = '', "updated_at" = '2009-12-30 06:36:39' WHERE "id" = 1 + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 14ms (DB: 1) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:36:39) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 171ms (View: 90, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:36:39) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:37:04) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"13", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 13)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = '', "updated_at" = '2009-12-30 06:37:04' WHERE "id" = 13 + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 14ms (DB: 1) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:37:05) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 171ms (View: 90, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:37:05) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:40:30) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 88, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:40:31) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:40:33) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"13", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 13)  + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:40:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 103ms (View: 92, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:40:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:41:45) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 177ms (View: 92, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:41:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:41:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"12", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 12)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:41:52) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (6.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 173ms (View: 90, DB: 7) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:41:52) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 01:55:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (1.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 02:55:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 03:55:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 04:55:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 05:55:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 06:55:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 07:55:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:00:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:05:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:10:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:15:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:20:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:25:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:30:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:35:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:40:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:45:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:50:00', NULL, '2009-12-30 06:42:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:42:07', NULL, '2009-12-30 08:55:00', NULL, '2009-12-30 06:42:07') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-30 06:42:07', '2009-12-30', 'Perth', '2009-12-30 06:42:07') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 97 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 98 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 99 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 100 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 101 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 102 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 103 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 104 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 105 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 106 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 107 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 108 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 109 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 110 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 111 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 112 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 113 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 114 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 115 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 116 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 117 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 118 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 119 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 120 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 121 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 122 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 123 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 124 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 125 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 126 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 127 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 128 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 129 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 130 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 131 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 132 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 133 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 134 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 135 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 136 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 137 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 138 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 139 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 140 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 141 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 142 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 143 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 144 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 145 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 146 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 147 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 148 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 149 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 150 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 151 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 152 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 153 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 154 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 155 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 156 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 157 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 158 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 159 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 160 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 161 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 162 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 163 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 164 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 165 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 166 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 167 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 168 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 169 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 170 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 171 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 172 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 173 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 174 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 175 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 176 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 177 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 178 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 179 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 180 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 181 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 182 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 183 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 184 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 185 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 186 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 187 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 188 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 189 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 190 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 191 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-30 06:42:07' WHERE "id" = 192 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  + TimeSlot Load (8.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2) LIMIT 1 + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:46:33) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"73", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 73)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:46:33) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 169ms (View: 158, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:46:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:49:41) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 108ms (View: 98, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:49:41) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:49:43) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"42", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 42)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:49:43) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 88, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:49:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:49:46) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:56:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 105ms (View: 94, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:56:21) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:56:26) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"56", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 56)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:56:26) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 98ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:56:26) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:56:32) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"69", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 69)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:56:32) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 88, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:56:32) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:57:07) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"63", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 63)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:57:08) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:57:08) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:57:51) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"27", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 27)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 10ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:57:51) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 88, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:57:51) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 17:58:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"14", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 14)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 11ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 17:58:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 98ms (View: 86, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 17:58:06) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 18:00:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"94", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 94)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 11ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 18:00:21) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + +ActionView::TemplateError (Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id) on line #10 of app/views/days_of_action/show.html.haml: +7: %body.bp.three-col +8: #container +9: #content +10: - form_for @registration, :url => {:controller=>"registrations"} do |f| +11: = f.error_messages +12: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +13: %table.roster + + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (99.1ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 18:00:35) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + +ActionView::TemplateError (Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id) on line #10 of app/views/days_of_action/show.html.haml: +7: %body.bp.three-col +8: #container +9: #content +10: - form_for @registration, :url => {:controller=>"registrations"} do |f| +11: = f.error_messages +12: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +13: %table.roster + + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/days_of_action/show.html.haml:10:in `_run_haml_app47views47days_of_action47show46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (36.7ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 18:00:54) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 175ms (View: 163, DB: 6) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 18:00:54) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 18:00:57) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"135", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 135)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Redirected to http://localhost:3000/days_of_action/2 +Completed in 11ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 18:00:57) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (6.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 178ms (View: 91, DB: 6) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 18:00:57) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-30 18:01:00) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"152", "email_address"=>""}, "authenticity_token"=>"OI8F4lbLFj1VRp6XB5cR8B4J0I4t/5SVoJmyqUAYjZ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 152)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Redirected to http://localhost:3000/days_of_action/2 +Completed in 11ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-30 18:01:00) [GET] + Parameters: {"id"=>"2"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 2)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 2)  +Completed in 172ms (View: 160, DB: 6) | 200 OK [http://localhost/days_of_action/2] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-30 18:01:00) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:01:13) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (18.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 603ms (View: 532, DB: 19) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:01:14) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:01:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>""}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 11ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:01:19) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 99ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:01:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:01:28) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 00:01:28' WHERE "id" = 4 + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 15ms (DB: 1) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:01:28) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 89, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:01:28) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:01:36) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:03:29) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 106ms (View: 94, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:03:29) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:03:38) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"94", "email_address"=>""}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 94)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 11ms (DB: 0) | 302 Found [http://localhost/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:03:38) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 89, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:03:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:09:12) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 186ms (View: 174, DB: 6) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:09:12) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:09:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:09:57) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 168ms (View: 157, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:09:57) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:10:10) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"79", "email_address"=>""}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 79)  + +ActionView::MissingTemplate (Missing template registrations/new.erb in view path app/views): + app/controllers/registrations_controller.rb:8:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:10:31) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 167ms (View: 156, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:10:32) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:10:35) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"2", "email_address"=>""}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 2)  + +ActionView::MissingTemplate (Missing template registrations/show.erb in view path app/views): + app/controllers/registrations_controller.rb:8:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:16:00) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 168ms (View: 157, DB: 5) | 200 OK [http://localhost/days_of_action/1] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:16:00) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:16:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"2", "email_address"=>""}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 2)  + +ActionView::MissingTemplate (Missing template registrations/new.erb in view path app/views): + app/controllers/registrations_controller.rb:13:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:18:27) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"2", "email_address"=>""}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 2)  + +ActionView::MissingTemplate (Missing template registrations/new.erb in view path app/views): + app/controllers/registrations_controller.rb:14:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:19:44) [GET] +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#show (for 127.0.0.1 at 2009-12-31 11:20:23) [GET] + Parameters: {"id"=>"1"} + +ActionController::UnknownAction (No action responded to show. Actions: create, new, and record_not_found): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#1 (for 127.0.0.1 at 2009-12-31 11:20:27) [GET] + Parameters: {"id"=>"new"} + +ActionController::UnknownAction (No action responded to 1. Actions: create, new, and record_not_found): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:22:18) [GET] + Parameters: {"days_of_action_id"=>"1"} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:23:07) [GET] + Parameters: {"days_of_action_id"=>"1"} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:23:08) [GET] + Parameters: {"days_of_action_id"=>"1"} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:23:13) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 162ms (View: 150, DB: 6) | 200 OK [http://localhost/days_of_action/1/] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:23:14) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:23:27) [GET] + Parameters: {"days_of_action_id"=>"1"} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:28:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering days_of_action/show + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 98ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:28:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:28:23) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:29:00) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"79", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 79)  + +ActionView::MissingTemplate (Missing template registrations/new.erb in view path app/views): + app/controllers/registrations_controller.rb:14:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#index (for 127.0.0.1 at 2009-12-31 11:32:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + +ActionController::UnknownAction (No action responded to index. Actions: create, new, and record_not_found): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:33:04) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 104ms (View: 93, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:33:04) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:33:10) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"7", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 7)  +Rendering registrations/new + +ActionView::TemplateError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.time_zone) on line #13 of app/views/registrations/new.html.haml: +10: - form_for :registration, @registration, :url => {:controller=>"registrations"} do |f| +11: = f.error_messages +12: = error_messages_for 'registration' +13: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +14: %table.roster +15: - @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots| +16: %tr.hour + + app/views/registrations/new.html.haml:13:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/registrations/new.html.haml:10:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + app/controllers/registrations_controller.rb:13:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (38.9ms) +Rendered rescues/_request_and_response (1.4ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:33:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"7", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 7)  +Rendering registrations/new + +ActionView::TemplateError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.time_zone) on line #11 of app/views/registrations/new.html.haml: +8: #container +9: #content +10: - form_for :registration, @registration, :url => {:controller=>"registrations"} do |f| +11: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +12: %table.roster +13: - @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots| +14: %tr.hour + + app/views/registrations/new.html.haml:11:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/registrations/new.html.haml:10:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + app/controllers/registrations_controller.rb:13:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (106.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:34:00) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 97ms (View: 86, DB: 5) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:34:00) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:34:09) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"5", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 5)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 00:34:09' WHERE "id" = 5 + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 15ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:34:09) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActionView::MissingTemplate (Missing template days_of_action/show.erb in view path app/views): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:34:49) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 104ms (View: 93, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:34:49) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:34:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 97ms (View: 87, DB: 5) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:34:53) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:34:56) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"6", "email_address"=>""}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + +ActionController::MethodNotAllowed (Only get, put, and delete requests are allowed.): + + +Rendered rescues/_trace (19.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (method_not_allowed) + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:35:17) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"6", "email_address"=>"foo@bar.com"}, "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + +ActionController::MethodNotAllowed (Only get, put, and delete requests are allowed.): + + +Rendered rescues/_trace (19.4ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (method_not_allowed) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:43:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 168ms (View: 157, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:43:59) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:44:10) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"3", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 00:44:10' WHERE "id" = 3 + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 14ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 11:44:10) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActionView::MissingTemplate (Missing template days_of_action/show.erb in view path app/views): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 11:44:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  +Rendering registrations/new + +ActionView::TemplateError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.time_zone) on line #11 of app/views/registrations/new.html.haml: +8: #container +9: #content +10: - form_for :registration, @registration, :url => { :action => "create" } do |f| +11: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +12: %table.roster +13: - @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots| +14: %tr.hour + + app/views/registrations/new.html.haml:11:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/registrations/new.html.haml:10:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + app/controllers/registrations_controller.rb:13:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (37.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#index (for 127.0.0.1 at 2009-12-31 11:45:29) [GET] + Parameters: {"days_of_action_id"=>"1"} + +ActionController::UnknownAction (No action responded to index. Actions: create, new, and record_not_found): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 11:45:43) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 97ms (View: 86, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 11:45:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:34:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"2", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 2)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 01:34:06' WHERE "id" = 2 + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Redirected to http://localhost:3000/days_of_action/1 +Completed in 88ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 12:34:06) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActionView::MissingTemplate (Missing template days_of_action/show.erb in view path app/views): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:34:29) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"2", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 2)  +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 8ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:34:30) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 162ms (View: 152, DB: 5) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:34:30) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:34:35) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"8", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 8)  +Rendering registrations/new + +ActionView::TemplateError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.time_zone) on line #11 of app/views/registrations/new.html.haml: +8: #container +9: #content +10: - form_for :registration, @registration, :url => { :action => "create" } do |f| +11: Remember this table is in #{link_to "#{@day_of_action.time_zone} Time","http://what.timeisit.in/#{@day_of_action.time_zone}", :popup => true, :class => "time_zone_reminder"} +12: %table.roster +13: - @day_of_action.time_slots.group_by{|slot| slot.start_time.strftime("%I %p")}.each do |hour, slots| +14: %tr.hour + + app/views/registrations/new.html.haml:11:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/registrations/new.html.haml:10:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + app/controllers/registrations_controller.rb:13:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (37.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:35:42) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"8", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 8)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 01:35:42' WHERE "id" = 8 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 11ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:35:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 100ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:35:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:35:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"94", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 94)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 150ms (View: 134, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:35:52) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:35:56) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"95", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 95)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 167ms (View: 152, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:35:56) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:36:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"94", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 94)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 86, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:36:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:36:27) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:36:31) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"93", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 93)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 97ms (View: 81, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:36:32) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:36:33) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:36:41) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"65", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 65)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 95ms (View: 81, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:36:41) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:37:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"65", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 65)  + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + +ActionView::TemplateError (undefined method `time_slot_id' for #) on line #20 of app/views/registrations/new.html.haml: +17: - slots.each do |slot| +18: %td{:class=> slot.status} +19: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +20: = f.radio_button :time_slot_id, slot.id +21: +22: = f.label :email_address, "What is your email address?", :class => :title +23: = f.text_field :email_address, {:class => :title} + + app/views/registrations/new.html.haml:20:in `_run_haml_app47views47registrations47new46html46haml' + app/views/registrations/new.html.haml:17:in `each' + app/views/registrations/new.html.haml:17:in `_run_haml_app47views47registrations47new46html46haml' + app/views/registrations/new.html.haml:14:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/registrations/new.html.haml:10:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + app/controllers/registrations_controller.rb:15:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (42.6ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:38:10) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 93ms (View: 81, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:38:10) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:38:16) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"id"=>"69", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:38:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"id"=>"67", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:39:50) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 94ms (View: 83, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:39:51) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:40:32) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 106ms (View: 94, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:40:32) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:40:36) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"55", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 55)  + TimeSlot Update (0.3ms) UPDATE "time_slots" SET "email_address" = 'foo@bar.com', "updated_at" = '2009-12-31 01:40:36' WHERE "id" = 55 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 11ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:40:36) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 89, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:40:36) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:40:40) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"56", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 56)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 176ms (View: 161, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:40:40) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:45:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"54", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 54)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 86, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:45:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:45:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"54", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 54)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 102ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:45:22) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:45:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"53", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 53)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 172ms (View: 89, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:45:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:45:29) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"85", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 85)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 86, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:45:29) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:45:41) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"75", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 75)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 86, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:45:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:45:45) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"76", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 76)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 103ms (View: 87, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:45:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:45:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"66", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 66)  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 175ms (View: 160, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:45:49) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing DaysOfActionController#show (for 127.0.0.1 at 2009-12-31 12:53:48) [GET] + Parameters: {"id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  + +ActionView::MissingTemplate (Missing template days_of_action/show.erb in view path app/views): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#index (for 127.0.0.1 at 2009-12-31 12:53:56) [GET] + Parameters: {"days_of_action_id"=>"1"} + +ActionController::UnknownAction (No action responded to index. Actions: create, new, and record_not_found): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#index (for 127.0.0.1 at 2009-12-31 12:54:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + +ActionController::UnknownAction (No action responded to index. Actions: create, new, and record_not_found): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:54:13) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 103ms (View: 92, DB: 5) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:54:13) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:54:18) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"93", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 93)  +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:54:18) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 101ms (View: 88, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:54:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:54:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"81", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 81)  +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:54:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 104ms (View: 88, DB: 5) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:54:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:54:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 108ms (View: 94, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:54:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:54:46) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"67", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 67)  +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:54:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 105ms (View: 91, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:54:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:54:56) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (72.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 166ms (View: 86, DB: 72) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:54:56) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:54:59) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 97ms (View: 86, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:54:59) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 12:55:02) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"17", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 17)  +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 12:55:02) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 104ms (View: 90, DB: 5) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 12:55:02) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.8ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 13:35:14) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Completed in 106ms (View: 94, DB: 6) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 13:35:14) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "email_address" varchar(255), "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) select sqlite_version(*) + SQL (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM schema_migrations +Migrating to CreateDayOfActions (20091228021133) + SQL (0.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20091228021133') +Migrating to CreateTimeSlots (20091229030847) + SQL (0.6ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('20091229030847') +Migrating to CreateRegistrations (20091231024604) + SQL (0.6ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.7ms) INSERT INTO schema_migrations (version) VALUES ('20091231024604') + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("day_of_actions") + SQL (0.0ms) PRAGMA index_list("registrations") + SQL (0.0ms) PRAGMA index_list("time_slots") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:03:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:04:02) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 01:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:11:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 02:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:11:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 03:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:11:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 04:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:11:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 05:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:11:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 06:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:11:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 07:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:11:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:16:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:21:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:26:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:31:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:36:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:41:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:46:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:51:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 08:56:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 09:01:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 09:06:36', '2009-12-31 03:07:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:07:41', NULL, '-4712-01-01 09:11:36', '2009-12-31 03:07:41') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 03:07:41', '-4712-01-01', 'Perth', '2009-12-31 03:07:41') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-31 03:07:41' WHERE "id" = 96 + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:07:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + +ActionView::TemplateError (undefined local variable or method `registration' for #) on line #17 of app/views/registrations/new.html.haml: +14: %tr.hour +15: %th= hour +16: - slots.each do |slot| +17: %td{:class=> slot.status} +18: = f.label "time_slot_id_#{slot.id}", slot.start_time.strftime("%I:%M") +19: = f.radio_button :time_slot_id, slot.id +20: + + app/models/time_slot.rb:5:in `status' + app/views/registrations/new.html.haml:17:in `_run_haml_app47views47registrations47new46html46haml' + app/views/registrations/new.html.haml:16:in `each' + app/views/registrations/new.html.haml:16:in `_run_haml_app47views47registrations47new46html46haml' + app/views/registrations/new.html.haml:13:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `call' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:164:in `form_for' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `call' + haml (2.2.16) [v] lib/haml/helpers.rb:545:in `haml_bind_proc' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:170:in `form_for' + app/views/registrations/new.html.haml:10:in `_run_haml_app47views47registrations47new46html46haml' + haml (2.2.16) [v] lib/haml/helpers/action_view_mods.rb:13:in `render' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (42.0ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:08:07) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 280ms (View: 259, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:08:08) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:08:16) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"1", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 9ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:08:16) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 290ms (View: 268, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:08:16) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:09:50) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"1", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 1)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:09:50', 1, 'foo@bar.com', '2009-12-31 03:09:50') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 12ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:09:50) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 206ms (View: 185, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:09:50) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:10:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"29", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 29)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 276ms (View: 256, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:10:22) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:10:26) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"82", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 82)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 9ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:10:26) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 272ms (View: 252, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:10:27) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:17:51) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 284ms (View: 263, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:17:52) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:17:56) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"3", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + +NoMethodError (You have a nil object when you didn't expect it! +You might have expected an instance of ActiveRecord::Base. +The error occurred while evaluating nil.valid?): + app/controllers/registrations_controller.rb:18:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (99.8ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:18:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"3", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:18:22', 3, 'foo@bar.com', '2009-12-31 03:18:22') + +NoMethodError (You have a nil object when you didn't expect it! +You might have expected an instance of ActiveRecord::Base. +The error occurred while evaluating nil.valid?): + app/controllers/registrations_controller.rb:18:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (27.7ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:18:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 281ms (View: 259, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:18:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:18:42) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"96", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 96)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:18:42', 96, 'foo@bar.com', '2009-12-31 03:18:42') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 14ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:18:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.7ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 218ms (View: 193, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:18:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:18:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"91", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 91)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:18:49) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 210ms (View: 188, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:18:50) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:23:46) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"2", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 2)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:23:46', 2, 'foo@bar.com', '2009-12-31 03:23:46') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 13ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:23:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 273ms (View: 250, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:23:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:23:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"82", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 82)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 9ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:23:52) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (74.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 278ms (View: 186, DB: 84) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:23:52) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:24:28) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"4", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 4)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:24:28', 4, 'foo@bar.com', '2009-12-31 03:24:28') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 13ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:24:28) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 208ms (View: 185, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:24:29) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:24:34) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"5", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 5)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:24:34) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 278ms (View: 255, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:24:34) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (4.9ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:52) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 295ms (View: 272, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:31:53) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:31:55) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"5", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 5)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:31:55) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 287ms (View: 265, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:31:55) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:33:27) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:27) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 220ms (View: 196, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:33:27) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:33:40) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 03:33:40', 64, 'foo@bar.com', '2009-12-31 03:33:40') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 13ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:33:40) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 285ms (View: 261, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:33:40) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:38:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"65", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 65)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:38:49) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 290ms (View: 267, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:38:49) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:39:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 282ms (View: 260, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:39:06) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:39:09) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:40:15) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 213ms (View: 192, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:40:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:40:36) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 14:44:46) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"66", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 66)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 9ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 14:44:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 287ms (View: 262, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 14:44:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.7ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:05:52) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 294ms (View: 270, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:05:53) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:05:56) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 282ms (View: 261, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:05:56) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:05:59) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + +NoMethodError (undefined method `<<' for #): + app/controllers/registrations_controller.rb:18:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (27.2ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:06:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.5ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 221ms (View: 198, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:06:58) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:07:00) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + +NoMethodError (undefined method `add_to_base' for #): + app/controllers/registrations_controller.rb:18:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (27.9ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:07:17) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 278ms (View: 257, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:07:17) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:07:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:07:21) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 284ms (View: 262, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:07:21) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:07:24) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:07:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 214ms (View: 192, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:07:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing ApplicationController#create (for 127.0.0.1 at 2009-12-31 15:08:45) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + +SyntaxError (/Users/perrynfowler/Projects/phoneflood/app/controllers/registrations_controller.rb:18: syntax error, unexpected ')', expecting kEND): + + +Rendered rescues/_trace (24.8ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:08:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:08:52) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 270ms (View: 248, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:08:53) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:09:36) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:09:36) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 208ms (View: 187, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:09:36) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:10:22) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:10:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 207ms (View: 185, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:10:22) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:11:00) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:11:00) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 285ms (View: 261, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:11:01) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:11:08) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:11:08) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 298ms (View: 274, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:11:09) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:11:19) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 78ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:11:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 214ms (View: 190, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:11:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:11:26) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:11:26) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 285ms (View: 262, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:11:26) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:11:29) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"52", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 52)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:11:30) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 292ms (View: 268, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:11:30) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:11:36) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 281ms (View: 259, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:11:36) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:11:44) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:11:44', NULL, 'foo@bar.com', '2009-12-31 04:11:44') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 9ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:11:44) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 218ms (View: 194, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:11:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:14:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 217ms (View: 193, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:14:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:14:41) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:14:41) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 286ms (View: 264, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:14:41) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:15:12) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 281ms (View: 259, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:15:13) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:15:14) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:15:15) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms)[0m SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 296ms (View: 270, DB: 19) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:15:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:15:41) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 301ms (View: 277, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:15:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:15:43) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:15:43) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 224ms (View: 199, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:15:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:16:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 219ms (View: 195, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:16:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:16:49) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:16:49) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 216ms (View: 193, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:16:49) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:17:12) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 214ms (View: 190, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:17:12) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:17:14) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + +NoMethodError (undefined method `has_errors?' for #): + app/controllers/registrations_controller.rb:19:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (28.3ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:17:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:17:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.6ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 216ms (View: 193, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:17:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:17:30) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Update (0.3ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:17:30' WHERE "id" = 6 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 17ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:17:30) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 290ms (View: 266, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:17:30) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:17:34) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>"sdfd"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:17:34', 64, 'sdfd', '2009-12-31 04:17:34') + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 13ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:17:34) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 285ms (View: 261, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:17:34) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:17:38) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>"sdfd"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:17:38', 64, 'sdfd', '2009-12-31 04:17:38') + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Update (0.2ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:17:38' WHERE "id" = 8 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 18ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:17:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.5ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 220ms (View: 195, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:17:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:17:44) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:17:44', 64, 'foo@bar.com', '2009-12-31 04:17:44') + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Update (0.2ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:17:44' WHERE "id" = 9 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 17ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:17:44) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 215ms (View: 191, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:17:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:18:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.5ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 215ms (View: 191, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:18:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:18:26) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"64", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 64)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Update (0.3ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:18:26' WHERE "id" = 10 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 14ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:18:26) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 286ms (View: 262, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:18:27) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:18:32) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 283ms (View: 260, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:18:32) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:18:34) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:18:34) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.6ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 262ms (View: 231, DB: 23) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:18:35) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:18:38) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"53", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 53)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 11ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:18:39) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 221ms (View: 197, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:18:39) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:18:42) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"53", "email_address"=>"foo"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:18:42', 53, 'foo', '2009-12-31 04:18:42') + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 53)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 14ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:18:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 287ms (View: 262, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:18:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:18:50) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"73", "email_address"=>"foo"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + Registration Create (0.4ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:18:50', 73, 'foo', '2009-12-31 04:18:50') + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 73)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 15ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:18:50) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 288ms (View: 265, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:18:51) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:19:13) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 295ms (View: 272, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:19:13) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:19:15) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.7ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 295ms (View: 271, DB: 18) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:19:15) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:19:44) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"85", "email_address"=>"foo"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + Registration Create (0.5ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:19:44', 85, 'foo', '2009-12-31 04:19:44') + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 85)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 89ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:19:44) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.7ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 219ms (View: 194, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:19:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:20:19) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 212ms (View: 189, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:20:19) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:20:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.6ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 214ms (View: 192, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:20:22) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:20:24) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 207ms (View: 186, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:20:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:20:29) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:20:29) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 288ms (View: 263, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:20:30) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:23:03) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"52", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 52)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:23:03) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 288ms (View: 264, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:23:04) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:23:36) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 290ms (View: 267, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:23:36) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:24:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 290ms (View: 268, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:24:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:24:43) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"5", "email_address"=>"foo"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 5)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:24:43', 5, 'foo', '2009-12-31 04:24:43') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 14ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:24:43) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 215ms (View: 191, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:24:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:24:47) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"5", "email_address"=>"foo"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 5)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Update (0.3ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:24:47' WHERE "id" = 14 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:24:47', 5, 'foo', '2009-12-31 04:24:47') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 17ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:24:47) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 293ms (View: 269, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:24:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:25:06) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"5", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 5)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Update (0.3ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:25:06' WHERE "id" = 15 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 15ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:25:06) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 284ms (View: 260, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:25:06) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:25:59) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"1", "email_address"=>"foo"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 1)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Update (0.3ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:25:59' WHERE "id" = 1 + Registration Create (0.4ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:25:59', 1, 'foo', '2009-12-31 04:25:59') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 17ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:25:59) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 222ms (View: 197, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:26:00) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:25) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"14", "email_address"=>"foo"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 14)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:49:25', 14, 'foo', '2009-12-31 04:49:25') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 14ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.5ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 215ms (View: 191, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:32) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"14", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 14)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Update (0.3ms) UPDATE "registrations" SET "time_slot_id" = NULL, "updated_at" = '2009-12-31 04:49:32' WHERE "id" = 17 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 14ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:32) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 279ms (View: 255, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:39) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 282ms (View: 259, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:39) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:41) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:41) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 285ms (View: 192, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:41) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:47) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 209ms (View: 186, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:48) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:50) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:50) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 213ms (View: 189, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:50) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:53) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 282ms (View: 260, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:53) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:54) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:54) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 281ms (View: 258, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:54) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:49:55) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:49:55) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 213ms (View: 190, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:49:55) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:50:44) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 212ms (View: 189, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:50:44) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:50:47) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:50:47) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 212ms (View: 190, DB: 15) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:50:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:51:07) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 218ms (View: 193, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:51:07) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:51:09) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:51:09) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 280ms (View: 256, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:51:09) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:51:11) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:51:12) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 285ms (View: 262, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:51:12) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:51:40) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 295ms (View: 197, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:51:40) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:51:42) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:51:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 215ms (View: 192, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:51:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:52:02) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"fdsfdsf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:52:02) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 286ms (View: 262, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:52:03) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:52:42) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"fdsfdsf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:52:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 281ms (View: 258, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:52:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:54:16) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 283ms (View: 260, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:54:16) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:54:20) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + +NoMethodError (protected method `validate' called for #): + app/controllers/registrations_controller.rb:16:in `create' + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendered rescues/_trace (99.0ms) +Rendered rescues/_request_and_response (0.3ms) +Rendering rescues/layout (internal_server_error) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:54:34) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:54:34) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 284ms (View: 261, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:54:35) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:54:38) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"55", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 55)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 10ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:54:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 296ms (View: 272, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:54:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:54:41) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.5ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 294ms (View: 269, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:54:42) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:54:45) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"55", "email_address"=>"dfff"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 55)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Create (0.3ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 04:54:45', 55, 'dfff', '2009-12-31 04:54:45') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 13ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:54:45) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.0ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 214ms (View: 191, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:54:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:54:49) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 209ms (View: 186, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:54:49) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:54:53) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"sdfds"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:54:53) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 294ms (View: 270, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:54:53) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:57:55) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 283ms (View: 260, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:57:55) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:57:58) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:57:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 286ms (View: 262, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:57:59) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:58:21) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"dfdf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:58:22) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 238ms (View: 212, DB: 19) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:58:22) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:58:59) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"dfdf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:58:59) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 233ms (View: 207, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:59:00) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 15:59:46) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"dfdf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 15:59:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 356ms (View: 330, DB: 18) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 15:59:46) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:05:30) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"dfdf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:05:30) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 419ms (View: 390, DB: 20) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:05:30) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:05:59) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:05:59) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 391ms (View: 363, DB: 19) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:05:59) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:06:35) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.6ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 308ms (View: 282, DB: 18) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:06:35) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:06:37) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:06:37) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 362ms (View: 334, DB: 20) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:06:37) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:08:28) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 330ms (View: 305, DB: 18) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:08:29) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:08:31) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#index (for 127.0.0.1 at 2009-12-31 16:09:35) [GET] + Parameters: {"days_of_action_id"=>"1"} + +ActionController::UnknownAction (No action responded to index. Actions: create, new, and record_not_found): + haml (2.2.16) [v] lib/sass/plugin/rails.rb:19:in `process_without_compass' + vendor/gems/chriseppstein-compass-0.8.17/lib/compass/app_integration/rails/action_controller.rb:7:in `process' + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:09:38) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 330ms (View: 305, DB: 19) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:09:38) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:09:42) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:09:42) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 335ms (View: 306, DB: 19) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:09:43) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:09:46) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"40", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:09:46) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.6ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 272ms (View: 242, DB: 20) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:09:47) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:09:51) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"40", "email_address"=>"ddvv"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:09:51) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 286ms (View: 255, DB: 21) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:09:51) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:09:55) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"40", "email_address"=>"ddvv"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:09:55) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 356ms (View: 327, DB: 21) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:09:55) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:10:00) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"40", "email_address"=>"ddvv"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:00) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 347ms (View: 319, DB: 20) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:01) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:25) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 344ms (View: 315, DB: 20) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:25) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:10:29) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"40", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 6ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:29) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 259ms (View: 231, DB: 19) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:29) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:10:33) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"40", "email_address"=>"cv"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 40)  + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Create (0.4ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 05:10:33', 40, 'cv', '2009-12-31 05:10:33') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 17ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:33) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.5ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 377ms (View: 345, DB: 22) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:33) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:40) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 333ms (View: 305, DB: 19) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:40) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:10:44) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"asdfdsf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:44) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.7ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.4ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 463ms (View: 430, DB: 23) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:45) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:10:52) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"32", "email_address"=>""}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 7ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:52) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.9ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.5ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 347ms (View: 318, DB: 20) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:52) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 16:10:58) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"time_slot_id"=>"32", "email_address"=>"fdsaf"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 32)  + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Create (0.4ms) INSERT INTO "registrations" ("updated_at", "time_slot_id", "email_address", "created_at") VALUES('2009-12-31 05:10:58', 32, 'fdsaf', '2009-12-31 05:10:58') +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 17ms (DB: 1) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 16:10:58) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (6.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.5ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 369ms (View: 337, DB: 22) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 16:10:59) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.5ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.1ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:31) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (4.8ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 283ms (View: 260, DB: 16) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 17:10:31) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + + +Processing RegistrationsController#create (for 127.0.0.1 at 2009-12-31 17:10:37) [POST] + Parameters: {"commit"=>"Register", "registration"=>{"email_address"=>"foo@bar.com"}, "days_of_action_id"=>"1", "authenticity_token"=>"7SqQDiZJpBp2m+OR8nOMOBXOe/6v8vKjXgN0JatRBQ0="} +Redirected to http://localhost:3000/days_of_action/1/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://localhost/days_of_action/1/registrations] + + +Processing RegistrationsController#new (for 127.0.0.1 at 2009-12-31 17:10:37) [GET] + Parameters: {"days_of_action_id"=>"1"} + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 1)  +Rendering registrations/new + TimeSlot Load (5.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 2) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 3) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 4) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 5) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 6) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 7) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 8) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 9) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 10) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 11) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 12) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 13) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 14) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 15) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 16) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 17) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 18) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 19) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 20) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 21) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 22) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 23) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 24) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 25) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 26) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 27) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 28) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 29) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 30) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 31) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 32) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 33) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 34) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 35) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 36) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 37) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 38) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 39) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 40) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 41) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 42) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 43) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 44) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 45) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 46) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 47) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 48) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 49) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 50) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 51) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 52) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 53) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 54) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 55) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 56) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 57) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 58) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 59) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 60) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 61) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 62) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 63) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 64) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 65) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 66) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 67) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 68) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 69) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 70) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 71) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 72) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 73) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 74) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 75) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 76) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 77) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 78) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 79) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 80) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 81) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 82) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 83) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 84) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 85) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 86) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 87) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 88) LIMIT 1 + Registration Load (0.3ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 89) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 90) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 91) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 92) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 93) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 94) LIMIT 1 + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 95) LIMIT 1 + Registration Load (0.2ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 96) LIMIT 1 +Completed in 356ms (View: 330, DB: 17) | 200 OK [http://localhost/days_of_action/1/registrations/new] + + +Processing ApplicationController#index (for 127.0.0.1 at 2009-12-31 17:10:37) [GET] + +ActionController::RoutingError (No route matches "/stylesheets/compiled/roster.css" with {:method=>:get}): + + +Rendering rescues/layout (not_found) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.4ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.3ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.7ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.2ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.4ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.1ms) select sqlite_version(*) + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (3.5ms) CREATE TABLE "day_of_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "time_zone" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "time_slot_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (2.3ms) CREATE TABLE "time_slots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "start_time" datetime, "day_of_action_id" integer, "created_at" datetime, "updated_at" datetime)  + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  + SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT version FROM "schema_migrations" + SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20091231024604') + SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091228021133') + SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091229030847') diff --git a/log/production.log b/log/production.log new file mode 100644 index 0000000..e69de29 diff --git a/log/server.log b/log/server.log new file mode 100644 index 0000000..e69de29 diff --git a/log/test.log b/log/test.log new file mode 100644 index 0000000..68f1355 --- /dev/null +++ b/log/test.log @@ -0,0 +1,4726 @@ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-29 00:49:55', '2009-12-29 00:49:55') + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-29 00:50:19', '2009-12-29 00:50:19') + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-29 00:51:29', '2009-12-29 00:51:29') + DayOfAction Create (56.5ms) INSERT INTO "day_of_actions" ("updated_at", "created_at") VALUES('2009-12-29 00:52:27', '2009-12-29 00:52:27') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.6ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 02:51:01', '--- !ruby/object:Spec::Mocks::Mock +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 02:51:01') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 02:58:11', '--- !ruby/object:Spec::Mocks::Mock +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 02:58:11') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 02:59:19', '-4712-01-01', NULL, '2009-12-29 02:59:19') + DayOfAction Create (0.3ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 02:59:19', '--- !ruby/object:Spec::Mocks::Mock +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 02:59:19') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:00:40', '--- !ruby/object:Spec::Mocks::Mock +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:00:40') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:02:50', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:02:50') + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:04:51', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:04:51') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:12:30', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:12:30') + TimeSlot Load (0.0ms) SQLite3::SQLException: no such column: time_slots.day_of_action_id: SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:17:17', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:17:17') + TimeSlot Load (0.0ms) SQLite3::SQLException: no such column: time_slots.day_of_action_id: SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fdd7c>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fdd7c>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:20:22', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:20:22') + TimeSlot Load (0.0ms) SQLite3::SQLException: no such column: time_slots.day_of_action_id: SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:32:46', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:32:46') + TimeSlot Load (0.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 03:33:36', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 03:33:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 03:33:36', NULL, 1, '2009-12-29 03:33:36') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 03:33:36', NULL, 1, '2009-12-29 03:33:36') +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:28:00', NULL, NULL, '2009-12-29 04:28:00') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ + DayOfAction Create (0.3ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:28:00', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:28:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:28:00', NULL, 1, '2009-12-29 04:28:00') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:28:00', NULL, 1, '2009-12-29 04:28:00') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:31:01', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:31:01') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:31:01', NULL, 1, '2009-12-29 04:31:01') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:31:01', NULL, 1, '2009-12-29 04:31:01') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:31:18', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:31:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:31:18', NULL, 1, '2009-12-29 04:31:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:31:18', NULL, 1, '2009-12-29 04:31:18') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:31:34', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:31:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:31:34', NULL, 1, '2009-12-29 04:31:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:31:34', NULL, 1, '2009-12-29 04:31:34') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:32:26', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:32:26') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:32:26', NULL, 1, '2009-12-29 04:32:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:32:26', NULL, 1, '2009-12-29 04:32:26') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:32:48', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:32:48') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:32:49', NULL, 1, '2009-12-29 04:32:49') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:32:49', NULL, 1, '2009-12-29 04:32:49') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:33:06', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:33:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:33:06', NULL, 1, '2009-12-29 04:33:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:33:06', NULL, 1, '2009-12-29 04:33:06') +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5f9650>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5f9650>'); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...(v.to_i rescue v ? 1 : 0); end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...:0x5eb078>_id', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe #_id is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Definition:0x5eb078>_id'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:33:41', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', NULL, '2009-12-29 04:33:41') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:33:41', NULL, 1, '2009-12-29 04:33:41') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "#_id", "day_of_action_id", "created_at") VALUES('2009-12-29 04:33:41', NULL, 1, '2009-12-29 04:33:41') + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions"  +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (1.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.7ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 09:55:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 10:55:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 11:55:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 12:55:00', '2009-12-29 04:39:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 13:55:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 14:55:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 15:55:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:00:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:05:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:10:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:15:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:20:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:25:00', '2009-12-29 04:39:17') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:30:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:35:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:40:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:45:00', '2009-12-29 04:39:17') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:50:00', '2009-12-29 04:39:17') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:39:17', NULL, '-4712-01-01 16:55:00', '2009-12-29 04:39:17') + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:39:17', '-4712-01-01 00:00:00', NULL, '2009-12-29 04:39:17') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 79 + TimeSlot Update (0.2ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:39:17' WHERE "id" = 96 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions"  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions"  +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 09:55:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 10:55:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 11:55:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 12:55:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 13:55:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 14:55:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 15:55:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:00:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:05:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:10:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:15:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:20:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:25:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:30:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:35:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:40:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:45:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:50:00', '2009-12-29 04:40:24') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:40:24', NULL, '-4712-01-01 16:55:00', '2009-12-29 04:40:24') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:40:24', '-4712-01-01 00:00:00', NULL, '2009-12-29 04:40:24') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 97 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 98 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 99 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 100 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 101 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 102 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 103 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 104 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 105 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 106 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 107 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 108 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 109 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 110 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 111 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 112 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 113 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 114 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 115 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 116 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 117 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 118 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 119 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 120 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 121 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 122 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 123 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 124 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 125 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 126 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 127 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 128 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 129 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 130 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 131 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 132 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 133 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 134 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 135 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 136 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 137 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 138 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 139 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 140 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 141 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 142 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 143 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 144 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 145 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 146 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 147 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 148 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 149 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 150 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 151 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 152 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 153 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 154 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 155 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 156 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 157 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 158 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 159 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 160 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 161 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 162 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 163 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 164 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 165 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 166 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 167 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 168 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 169 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 170 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 171 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 172 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 173 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 174 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 175 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 176 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 177 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 178 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 179 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 180 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 181 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 182 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 183 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 184 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 185 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 186 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 187 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 188 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 189 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 190 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 191 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 2, "updated_at" = '2009-12-29 04:40:24' WHERE "id" = 192 + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions"  + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (8.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:00:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:05:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:10:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:15:00', '2009-12-29 04:41:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:20:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:25:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:30:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:35:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:40:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:45:00', '2009-12-29 04:41:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:50:00', '2009-12-29 04:41:25') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 22:55:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:00:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:05:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:10:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:15:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:20:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:25:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:30:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:35:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:40:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:45:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:50:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-28 23:55:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:00:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:05:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:10:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:15:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:20:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:25:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:30:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:35:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:40:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:45:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:50:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 00:55:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:00:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:05:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:10:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:15:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:20:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:25:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:30:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:35:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:40:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:45:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:50:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 01:55:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:00:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:05:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:10:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:15:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:20:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:25:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:30:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:35:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:40:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:25', NULL, '2009-12-29 02:45:00', '2009-12-29 04:41:25') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 02:50:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 02:55:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:00:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:05:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:10:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:15:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:20:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:25:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:30:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:35:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:40:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:45:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:50:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 03:55:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:00:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:05:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:10:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:15:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:20:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:25:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:30:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:35:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:40:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:45:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:50:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 04:55:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:00:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:05:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:10:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:15:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:20:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:25:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:30:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:35:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:40:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:45:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:50:00', '2009-12-29 04:41:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:41:26', NULL, '2009-12-29 05:55:00', '2009-12-29 04:41:26') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:41:26', '2009-12-29 15:41:25', NULL, '2009-12-29 04:41:26') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 193 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 194 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 195 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 196 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 197 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 198 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 199 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 200 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 201 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 202 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 203 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 204 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 205 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 206 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 207 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 208 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 209 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 210 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 211 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 212 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 213 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 214 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 215 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 216 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 217 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 218 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 219 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 220 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 221 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 222 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 223 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 224 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 225 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 226 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 227 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 228 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 229 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 230 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 231 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 232 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 233 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 234 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 235 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 236 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 237 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 238 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 239 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 240 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 241 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 242 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 243 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 244 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 245 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 246 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 247 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 248 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 249 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 250 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 251 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 252 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 253 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 254 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 255 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 256 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 257 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 258 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 259 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 260 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 261 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 262 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 263 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 264 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 265 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 266 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 267 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 268 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 269 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 270 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 271 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 272 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 273 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 274 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 275 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 276 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 277 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 278 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 279 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 280 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 281 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 282 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 283 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 284 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 285 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 286 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 287 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 3, "updated_at" = '2009-12-29 04:41:26' WHERE "id" = 288 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 1) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 3) LIMIT 1 + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (8.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 3)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 3) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 3) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 3) LIMIT 1 + DayOfAction Delete all (3.5ms) DELETE FROM "day_of_actions" WHERE 1=1 + TimeSlot Create (0.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:00:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:05:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:10:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:15:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:20:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:25:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:30:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:04', NULL, '2009-12-28 22:35:00', '2009-12-29 04:44:04') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 22:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 22:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 22:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 22:55:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:00:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:05:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:10:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:15:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:20:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:25:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:30:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:35:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-28 23:55:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:00:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:05:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:10:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:15:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:20:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:25:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:30:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:35:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 00:55:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:00:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:05:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:10:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:15:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:20:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:25:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:30:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:35:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 01:55:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:00:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:05:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:10:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:15:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:20:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:25:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:30:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:35:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 02:55:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:00:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:05:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:10:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:15:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:20:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:25:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:30:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:35:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 03:55:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:00:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:05:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:10:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:15:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:20:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:25:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:30:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:35:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 04:55:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:00:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:05:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:10:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:15:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:20:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:25:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:30:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:35:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:40:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:45:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:50:00', '2009-12-29 04:44:05') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:44:05', NULL, '2009-12-29 05:55:00', '2009-12-29 04:44:05') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:44:05', '2009-12-29 15:44:04', NULL, '2009-12-29 04:44:05') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 289 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 290 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 291 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 292 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 293 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 294 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 295 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 296 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 297 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 298 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 299 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 300 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 301 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 302 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 303 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 304 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 305 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 306 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 307 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 308 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 309 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 310 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 311 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 312 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 313 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 314 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 315 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 316 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 317 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 318 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 319 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 320 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 321 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 322 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 323 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 324 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 325 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 326 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 327 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 328 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 329 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 330 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 331 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 332 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 333 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 334 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 335 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 336 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 337 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 338 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 339 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 340 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 341 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 342 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 343 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 344 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 345 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 346 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 347 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 348 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 349 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 350 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 351 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 352 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 353 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 354 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 355 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 356 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 357 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 358 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 359 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 360 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 361 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 362 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 363 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 364 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 365 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 366 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 367 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 368 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 369 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 370 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 371 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 372 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 373 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 374 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 375 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 376 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 377 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 378 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 379 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 380 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 381 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 382 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 383 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 4, "updated_at" = '2009-12-29 04:44:05' WHERE "id" = 384 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 4) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + SQL (0.4ms) SELECT count(*) AS count_all FROM "time_slots" WHERE ("time_slots".day_of_action_id = 4)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.4ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 4) LIMIT 1 + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (0.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 4) ORDER BY time_slots.id DESC LIMIT 1 + DayOfAction Load (0.5ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (8.3ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 4)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (8.2ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 4)  + DayOfAction Load (0.4ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 + TimeSlot Load (8.1ms) SELECT * FROM "time_slots" WHERE ("time_slots".day_of_action_id = 4)  + DayOfAction Load (0.3ms) SELECT * FROM "day_of_actions"  + DayOfAction Load (0.2ms) SELECT * FROM "day_of_actions" ORDER BY day_of_actions.id DESC LIMIT 1 +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + TimeSlot Create (0.7ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 22:55:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-28 23:55:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 00:55:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 01:55:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 02:55:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 03:55:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 04:55:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:00:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:05:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:10:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:15:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:20:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:25:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:30:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:35:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:40:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:45:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:50:00', '2009-12-29 04:54:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 04:54:06', NULL, '2009-12-29 05:55:00', '2009-12-29 04:54:06') + DayOfAction Create (0.1ms) INSERT INTO "day_of_actions" ("updated_at", "date", "#", "created_at") VALUES('2009-12-29 04:54:06', '2009-12-29 15:54:06', NULL, '2009-12-29 04:54:06') + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 1 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 2 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 3 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 4 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 5 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 6 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 7 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 8 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 9 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 10 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 11 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 12 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 13 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 14 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 15 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 16 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 17 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 18 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 19 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 20 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 21 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 22 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 23 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 24 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 25 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 26 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 27 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 28 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 29 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 30 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 31 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 32 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 33 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 34 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 35 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 36 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 37 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 38 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 39 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 40 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 41 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 42 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 43 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 44 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 45 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 46 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 47 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 48 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 49 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 50 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 51 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 52 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 53 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 54 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 55 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 56 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 57 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 58 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 59 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 60 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 61 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 62 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 63 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 64 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 65 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 66 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 67 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 68 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 69 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 70 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 71 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 72 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 73 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 74 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 75 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 76 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 77 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 78 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 79 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 80 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 81 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 82 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 83 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 84 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 85 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 86 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 87 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 88 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 89 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 90 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 91 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 92 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 93 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 94 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 95 + TimeSlot Update (0.1ms) UPDATE "time_slots" SET "day_of_action_id" = 1, "updated_at" = '2009-12-29 04:54:06' WHERE "id" = 96 + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 16:07:52) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 16:08:58) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...Column.string_to_date(v)); end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...ion:0x5fd764>', new_value);end + ^ +Exception occurred during reader method compilation. +Maybe # is not a valid Ruby identifier? +compile error +/Library/Ruby/Gems/1.8/gems/activerecord-2.3.4/lib/active_record/attribute_methods.rb:211: syntax error, unexpected $end +...bleDefinition:0x5fd764>'); end + ^ + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:25:18', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-29 10:25:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:25:18', 1, NULL, '2009-12-29 10:25:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:25:18', 1, NULL, '2009-12-29 10:25:18') + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:28:34', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-29 10:28:34') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:28:34', 1, NULL, '2009-12-29 10:28:34') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:28:34', 1, NULL, '2009-12-29 10:28:34') + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:29:07', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-29 10:29:07') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:29:07', 1, NULL, '2009-12-29 10:29:07') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:29:07', 1, NULL, '2009-12-29 10:29:07') + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:39:25) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:40:08) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:41:26) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:41:42) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:41:42) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:42:13) [GET] + Parameters: {"id"=>"3"} + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:42:13) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:42:45) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:42:45) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:43:18', NULL, NULL, '2009-12-29 10:43:18') + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:43:18', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-29 10:43:18') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:43:18', 1, NULL, '2009-12-29 10:43:18') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:43:18', 1, NULL, '2009-12-29 10:43:18') + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:43:18) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 69ms (View: 0, DB: 1) | 200 OK [http://test.host/days_of_action/3] + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:43:18) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:38', NULL, NULL, '2009-12-29 10:44:38') + DayOfAction Create (0.4ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-29 10:44:38', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-29 10:44:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:38', 1, NULL, '2009-12-29 10:44:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-29 10:44:38', 1, NULL, '2009-12-29 10:44:38') + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:44:38) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 67ms (View: 0, DB: 1) | 200 OK [http://test.host/days_of_action/3] + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-29 21:44:38) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 13:38:56) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Rendering registrations/create +Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 13:40:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Rendering registrations/create +Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 13:41:41) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 13:44:12) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x109d390%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:19:32) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x1097bd4%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:19:32) [POST] + Parameters: {"registration"=>{"foo"=>"bar"}} + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:20:06) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x1096fe0%20@name=%22DOA%22%5D +Completed in 3ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:20:06) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:21:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x1097076%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:21:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x104a12c%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:23:16) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:23:16) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:24:11) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x1098412%20@name=%22DOA%22%5D +Completed in 3ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:24:11) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x104a564%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:26:14) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x10964fa%20@name=%22DOA%22%5D +Completed in 3ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:26:14) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x1048f98%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:26:48) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x1096ba8%20@name=%22DOA%22%5D +Completed in 3ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:26:48) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x104936c%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:27:46) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x109b716%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:27:46) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x104b7c0%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:27:59) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x10971fc%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:27:59) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x1048606%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:30:12) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x109906a%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:30:12) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x104baf4%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:32:28) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x109904c%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:32:28) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x104bacc%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:33:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x10984f8%20@name=%22DOA%22%5D +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-30 15:33:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/days_of_action/%23%5BSpec::Mocks::Mock:0x104a424%20@name=%22DOA%22%5D +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + TimeSlot Create (67.8ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:34:23', NULL, NULL, NULL, '2009-12-30 06:34:23') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:34:33', NULL, NULL, NULL, '2009-12-30 06:34:33') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:35:28', NULL, NULL, NULL, '2009-12-30 06:35:28') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:35:28', NULL, NULL, NULL, '2009-12-30 06:35:28') + TimeSlot Create (0.5ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:04', NULL, NULL, NULL, '2009-12-30 06:36:04') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-30 06:36:04', NULL, NULL, NULL, '2009-12-30 06:36:04') + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:25:26', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-31 02:25:26') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:26', 1, NULL, NULL, '2009-12-31 02:25:26') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:26', 1, NULL, NULL, '2009-12-31 02:25:26') + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-31 13:25:26) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 3ms (View: 1, DB: 1) | 200 OK [http://test.host/days_of_action/3] + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-31 13:25:26) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/days_of_action/3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:25:26) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:25:26) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:26', NULL, NULL, NULL, '2009-12-31 02:25:26') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:25:26', NULL, NULL, NULL, '2009-12-31 02:25:26') + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:27:42', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-31 02:27:42') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:27:42', 1, NULL, NULL, '2009-12-31 02:27:42') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:27:42', 1, NULL, NULL, '2009-12-31 02:27:42') + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-31 13:27:42) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 3ms (View: 1, DB: 1) | 200 OK [http://test.host/days_of_action/3] + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing DaysOfActionController#show (for 0.0.0.0 at 2009-12-31 13:27:42) [GET] + Parameters: {"id"=>"3"} +Rendering days_of_action/show +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/days_of_action/3] + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:27:42', NULL, NULL, NULL, '2009-12-31 02:27:42') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:27:42', NULL, NULL, NULL, '2009-12-31 02:27:42') + + +Processing RegistrationsController#show (for 0.0.0.0 at 2009-12-31 13:27:42) [GET] + Parameters: {"id"=>"3"} +Rendering registrations/show + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#show (for 0.0.0.0 at 2009-12-31 13:27:42) [GET] + Parameters: {"id"=>"3"} +Rendering registrations/show + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:27:42) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:27:42) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:27:57) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:27:57) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#show (for 0.0.0.0 at 2009-12-31 13:27:57) [GET] + Parameters: {"id"=>"3"} +Rendering registrations/show + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#show (for 0.0.0.0 at 2009-12-31 13:27:57) [GET] + Parameters: {"id"=>"3"} +Rendering registrations/show + + +Processing RegistrationsController#show (for 0.0.0.0 at 2009-12-31 13:28:24) [GET] + Parameters: {"id"=>"3"} +Rendering registrations/show + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#show (for 0.0.0.0 at 2009-12-31 13:28:24) [GET] + Parameters: {"id"=>"3"} +Rendering registrations/show + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:28:24) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:28:24) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:29:04) [GET] + Parameters: {"day_of_action_id"=>"3"} + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:29:05) [GET] + Parameters: {"day_of_action_id"=>"3"} + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:29:05) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 1) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:29:05) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:29:41) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:29:41) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:29:41) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:29:41) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:30:34) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:30:35) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:30:35) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:30:35) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:32:22) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:32:22) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:32:22) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:32:22) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 0ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 02:33:06', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :null_object: false + :__declared_as: Mock + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-31 02:33:06') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:06', 1, NULL, NULL, '2009-12-31 02:33:06') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:06', 1, NULL, NULL, '2009-12-31 02:33:06') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:06', NULL, NULL, NULL, '2009-12-31 02:33:06') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "email_address", "created_at") VALUES('2009-12-31 02:33:06', NULL, NULL, NULL, '2009-12-31 02:33:06') + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:33:06) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 2ms (DB: 1) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:33:06) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:33:06) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 64ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:33:06) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:59:36) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 13:59:36) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:59:36) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 13:59:36) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 0ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:00:18) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:00:18) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:00:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:00:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:00:42) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:00:42) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:00:42) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:00:42) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 0ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:01', NULL, NULL, '2009-12-31 03:02:01') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:01', NULL, NULL, '2009-12-31 03:02:01') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:31', NULL, NULL, '2009-12-31 03:02:31') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 03:02:31', NULL, NULL, '2009-12-31 03:02:31') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:10:12) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:10:12) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:10:12) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:10:12) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:22:17) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:22:18) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:22:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:22:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:22:18) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:23:21) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:23:21) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:23:21) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:23:21) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:23:21) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:23:37) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:23:37) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:23:37) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:23:37) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:23:37) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:25:31) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:25:32) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:25:32) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:25:32) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:25:32) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:26:05) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:26:05) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:26:05) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:26:05) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:26:05) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:15) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:15) [GET] + Parameters: {"days_of_action_id"=>"3"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:15) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:15) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:15) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:15) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:27) [GET] + Parameters: {"days_of_action_id"=>"3"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:56) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:57) [GET] + Parameters: {"days_of_action_id"=>"3"} + DayOfAction Load (0.1ms) SELECT * FROM "day_of_actions" WHERE ("day_of_actions"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:29:57) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:57) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:57) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:29:57) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:30:54) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:30:54) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:30:54) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:30:54) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:30:54) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:30:54) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:31:08) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:31:09) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 14:31:09) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:31:09) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:31:09) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 14:31:09) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:32:41) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:32:41) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:32:41) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:32:41) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:32:41) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 1) | 200 OK [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:32:41) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:33:34) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:33:34) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:33:34) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:33:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + SQL (0.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:33:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 1) | 200 OK [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:33:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:34:09) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:34:09) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:34:09) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:34:09) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:34:09) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.1ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:34:09) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:34:59) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:34:59) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:34:59) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:34:59) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:34:59) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.1ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:34:59) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:35:35) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:35:35) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:35:35) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:35:35) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Rendering registrations/create +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:35:35) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.1ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:35:35) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:36:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:36:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:36:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:36:01) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:36:01) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.1ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:36:01) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:36:55) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:36:55) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:36:55) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:36:55) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:36:55) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.1ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:36:55) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + TimeSlot Load (0.2ms) SELECT * FROM "time_slots" WHERE ("time_slots"."id" = 3)  +Rendering /Users/perrynfowler/Projects/phoneflood/public/404.html (404 Not Found) + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:37:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:37:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:37:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:37:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:37:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:37:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:38:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:38:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:38:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:38:02) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:38:02) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:38:02) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:38:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:38:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:38:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:38:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:38:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:38:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:40:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:40:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:40:01) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:40:01) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:40:01) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 4ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:40:01) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:41:13) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:41:13) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:41:13) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:41:13) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:41:13) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 5ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:41:13) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 2ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:42:11) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:42:11) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:42:11) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:42:11) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:42:11) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:42:11) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:42:40) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:42:40) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:42:40) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:42:40) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:42:40) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:42:40) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:43:34) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:43:34) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:43:34) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:43:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:43:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:43:34) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:47:28) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:47:28) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:47:28) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:47:28) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:47:28) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:47:28) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:47:45) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:47:45) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:47:45) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:47:45) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:47:45) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:47:45) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:47:45) [POST] + Parameters: {"registration"=>{}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:48:12) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:48:13) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:48:13) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:13) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:13) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:13) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:13) [POST] + Parameters: {"registration"=>{}} + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:48:37) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:48:37) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 15:48:37) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:37) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:37) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:37) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 15:48:37) [POST] + Parameters: {"registration"=>{}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?] + DayOfAction Create (0.6ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:20:38', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-31 06:20:38') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:38', 1, NULL, '2009-12-31 06:20:38') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:38', 1, NULL, '2009-12-31 06:20:38') + TimeSlot Create (0.4ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:38', NULL, NULL, '2009-12-31 06:20:38') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:20:38', NULL, NULL, '2009-12-31 06:20:38') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:20:38) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 2ms (DB: 2) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:20:38) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:20:38) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:20:38) [POST] + Parameters: {"registration"=>{}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:20:38) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 64ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:20:39) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 62ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:20:39) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:22:46) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:22:46) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:22:46) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:22:46) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:22:46) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:22:46) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 0ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:22:46) [POST] + Parameters: {"registration"=>{}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:27:30) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 5ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:27:30) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:27:31) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:27:31) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:27:31) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:27:31) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:27:56', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-31 06:27:56') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:27:56', 1, NULL, '2009-12-31 06:27:56') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:27:56', 1, NULL, '2009-12-31 06:27:56') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:27:56', NULL, NULL, '2009-12-31 06:27:56') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:27:56', NULL, NULL, '2009-12-31 06:27:56') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:27:56) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 3ms (DB: 2) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:27:56) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:27:56) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 0ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:27:56) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 64ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:27:56) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 62ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:27:56) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + DayOfAction Create (0.5ms) INSERT INTO "day_of_actions" ("updated_at", "date", "time_zone", "created_at") VALUES('2009-12-31 06:29:27', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: date + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: date + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: date +options: + :__declared_as: Mock +', '--- &id002 !ruby/object:Spec::Mocks::Mock +mock_proxy: !ruby/object:Spec::Mocks::Proxy + already_proxied_respond_to: false + error_generator: &id001 !ruby/object:Spec::Mocks::ErrorGenerator + declared_as: Mock + name: zone + target: *id002 + expectation_ordering: !ruby/object:Spec::Mocks::OrderGroup + error_generator: *id001 + ordering: [] + + expectations: [] + + messages_received: [] + + name: zone + options: + :__declared_as: Mock + :null_object: false + proxied_methods: [] + + stubs: [] + + target: *id002 +name: zone +options: + :__declared_as: Mock +', '2009-12-31 06:29:27') + TimeSlot Create (0.2ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:27', 1, NULL, '2009-12-31 06:29:27') + TimeSlot Create (0.1ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:27', 1, NULL, '2009-12-31 06:29:27') + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:27', NULL, NULL, '2009-12-31 06:29:27') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + TimeSlot Create (0.3ms) INSERT INTO "time_slots" ("updated_at", "day_of_action_id", "start_time", "created_at") VALUES('2009-12-31 06:29:27', NULL, NULL, '2009-12-31 06:29:27') + Registration Load (0.1ms) SELECT * FROM "registrations" WHERE ("registrations".time_slot_id = 1) LIMIT 1 + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:29:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3", "foo"=>"bar"}} +Redirected to http://test.host/registrations/new +Completed in 2ms (DB: 2) | 302 Found [http://test.host/registrations/create?registration%5Bfoo%5D=bar®istration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:29:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 1ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#create (for 0.0.0.0 at 2009-12-31 17:29:27) [POST] + Parameters: {"registration"=>{"time_slot_id"=>"3"}} +Redirected to http://test.host/registrations/new +Completed in 0ms (DB: 0) | 302 Found [http://test.host/registrations/create?registration%5Btime_slot_id%5D=3] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:29:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 64ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:29:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 61ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] + + +Processing RegistrationsController#new (for 0.0.0.0 at 2009-12-31 17:29:27) [GET] + Parameters: {"days_of_action_id"=>"3"} +Rendering registrations/new +Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/days_of_action/3/registrations/new] diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..eff660b --- /dev/null +++ b/public/404.html @@ -0,0 +1,30 @@ + + + + + + + The page you were looking for doesn't exist (404) + + + + + +
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+ + \ No newline at end of file diff --git a/public/422.html b/public/422.html new file mode 100644 index 0000000..b54e4a3 --- /dev/null +++ b/public/422.html @@ -0,0 +1,30 @@ + + + + + + + The change you wanted was rejected (422) + + + + + +
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+ + \ No newline at end of file diff --git a/public/500.html b/public/500.html new file mode 100644 index 0000000..ec3bbf0 --- /dev/null +++ b/public/500.html @@ -0,0 +1,30 @@ + + + + + + + We're sorry, but something went wrong (500) + + + + + +
+

We're sorry, but something went wrong.

+

We've been notified about this issue and we'll take a look at it shortly.

+
+ + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/images/grid.png b/public/images/grid.png new file mode 100644 index 0000000000000000000000000000000000000000..129d4a29fbe92688aabed5638e0c4f73a7bca818 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^8bB<>!3HEX<>xE|QY^(zo*^7SP{WbZ0pxQQctjR6 zFmQbUVMeDlCNqG7G9|7NCBgY=CFO}lsSJ)O`AMk?Zka`?<@rU~#R|^B#xt(DF$2|k zc)B=-cyuP$eEj#lzKxOL5tEL~%H%~Gtu@#d^DPnSv6>KM@XEpK;0k6FVdQ&MBb@06Zo?vj6}9 literal 0 HcmV?d00001 diff --git a/public/images/rails.png b/public/images/rails.png new file mode 100644 index 0000000000000000000000000000000000000000..d5edc04e65f555e3ba4dcdaad39dc352e75b575e GIT binary patch literal 6646 zcmVpVcQya!6@Dsmj@#jv7C*qh zIhOJ6_K0n?*d`*T7TDuW-}m`9Kz3~>+7`DUkbAraU%yi+R{N~~XA2B%zt-4=tLimUer9!2M~N{G5bftFij_O&)a zsHnOppFIzebQ`RA0$!yUM-lg#*o@_O2wf422iLnM6cU(ktYU8#;*G!QGhIy9+ZfzKjLuZo%@a z-i@9A`X%J{^;2q&ZHY3C(B%gqCPW!8{9C0PMcNZccefK){s|V5-xxtHQc@uf>XqhD z7#N^siWqetgq29aX>G^olMf=bbRF6@Y(}zYxw6o!9WBdG1unP}<(V;zKlcR2p86fq zYjaqB^;Ycq>Wy@5T1xOzG3tucG3e%nPvajaN{CrFbnzv^9&K3$NrDm*eQe4`BGQ2bI;dFEwyt>hK%X!L6)82aOZp zsrGcJ#7PoX7)s|~t6is?FfX*7vWdREi58tiY4S)t6u*|kv?J)d_$r+CH#eZ?Ef+I_ z(eVlX8dh~4QP?o*E`_MgaNFIKj*rtN(0Raj3ECjSXcWfd#27NYs&~?t`QZFT}!Zaf=ldZIhi}LhQlqLo+o5(Pvui&{7PD__^53f9j>HW`Q z_V8X5j~$|GP9qXu0C#!@RX2}lXD35@3N5{BkUi%jtaPQ*H6OX2zIz4QPuqmTv3`vG{zc>l3t0B9E75h< z8&twGh%dp7WPNI+tRl%#gf2}Epg8st+~O4GjtwJsXfN;EjAmyr6z5dnaFU(;IV~QK zW62fogF~zA``(Q>_SmD!izc6Y4zq*97|NAPHp1j5X7Op2%;GLYm>^HEMyObo6s7l) zE3n|aOHi5~B84!}b^b*-aL2E)>OEJX_tJ~t<#VJ?bT?lDwyDB&5SZ$_1aUhmAY}#* zs@V1I+c5md9%R-o#_DUfqVtRk>59{+Opd5Yu%dAU#VQW}^m}x-30ftBx#527{^pI4 z6l2C6C7QBG$~NLYb3rVdLD#Z{+SleOp`(Lg5J}`kxdTHe(nV5BdpLrD=l|)e$gEqA zwI6vuX-PFCtcDIH>bGY2dwq&^tf+&R?)nY-@7_j%4CMRAF}C9w%p86W<2!aSY$p+k zrkFtG=cGo38RnrG28;?PNk%7a@faaXq&MS*&?1Z`7Ojw7(#>}ZG4nMAs3VXxfdW>i zY4VX02c5;f7jDPY_7@Oa)CHH}cH<3y#}_!nng^W+h1e-RL*YFYOteC@h?BtJZ+?sE zy)P5^8Mregx{nQaw1NY-|3>{Z)|0`?zc?G2-acYiSU`tj#sSGfm7k86ZQ0SQgPevcklHxM9<~4yW zR796sisf1|!#{Z=e^)0;_8iUhL8g(;j$l=02FTPZ(dZV@s#aQ`DHkLM6=YsbE4iQ!b#*374l0Jw5;jD%J;vQayq=nD8-kHI~f9Ux|32SJUM`> zGp2UGK*4t?cRKi!2he`zI#j0f${I#f-jeT?u_C7S4WsA0)ryi-1L0(@%pa^&g5x=e z=KW9+Nn(=)1T&S8g_ug%dgk*~l2O-$r9#zEGBdQsweO%t*6F4c8JC36JtTizCyy+E4h%G(+ z5>y$%0txMuQ$e~wjFgN(xrAndHQo`Za+K*?gUVDTBV&Ap^}|{w#CIq{DRe}+l@(Ec zCCV6f_?dY_{+f{}6XGn!pL_up?}@>KijT^$w#Lb6iHW&^8RP~g6y=vZBXx~B9nI^i zGexaPjcd(%)zGw!DG_dDwh-7x6+ST#R^${iz_M$uM!da8SxgB_;Z0G%Y*HpvLjKw; zX=ir7i1O$-T|*TBoH$dlW+TLf5j5sep^DlDtkox;Kg{Q%EXWedJq@J@%VAcK)j3y1 zShM!CS#qax;D@RND%2t3W6kv+#Ky0F9<3YKDbV^XJ=^$s(Vtza8V72YY)577nnldI zHMA0PUo!F3j(ubV*CM@PiK<^|RM2(DuCbG7`W}Rg(xdYC>C~ z;1KJGLN&$cRxSZunjXcntykmpFJ7;dk>shY(DdK&3K_JDJ6R%D`e~6Qv67@Rwu+q9 z*|NG{r}4F8f{Dfzt0+cZMd$fvlX3Q`dzM46@r?ISxr;9gBTG2rmfiGOD*#c*3f)cc zF+PFZobY$-^}J8 z%n=h4;x2}cP!@SiVd!v;^Wwo0(N??-ygDr7gG^NKxDjSo{5T{?$|Qo5;8V!~D6O;F*I zuY!gd@+2j_8Rn=UWDa#*4E2auWoGYDddMW7t0=yuC(xLWky?vLimM~!$3fgu!dR>p z?L?!8z>6v$|MsLb&dU?ob)Zd!B)!a*Z2eTE7 zKCzP&e}XO>CT%=o(v+WUY`Az*`9inbTG& z_9_*oQKw;sc8{ipoBC`S4Tb7a%tUE)1fE+~ib$;|(`|4QbXc2>VzFi%1nX%ti;^s3~NIL0R}!!a{0A zyCRp0F7Y&vcP&3`&Dzv5!&#h}F2R-h&QhIfq*ts&qO13{_CP}1*sLz!hI9VoTSzTu zok5pV0+~jrGymE~{TgbS#nN5+*rF7ij)cnSLQw0Ltc70zmk|O!O(kM<3zw-sUvkx~ z2`y+{xAwKSa-0}n7{$I@Zop7CWy%_xIeN1e-7&OjQ6vZZPbZ^3_ z(~=;ZSP98S2oB#35b1~_x`2gWiPdIVddEf`AD9<@c_s)TM;3J$T_l?pr{<7PTgdiy zBc5IGx)g~n=s+Z$RzYCmv8PlJu%gkh^;%mTGMc)UwRINVD~K;`Rl!5@hhGg;y>5qj zq|u-Yf0q_~Y+Mbivkkfa0nAOzB1acnytogsj_m7FB(-FjihMek#GAU4M!iXCgdK8a zjoKm?*|iz7;dHm4$^hh(`Ufl>yb>$hjIA-;>{>C}G0Di%bGvUsJkfLAV|xq32c>RqJqTBJ3Dx zYC;*Dt|S$b6)aCJFnK(Eey$M1DpVV~_MIhwK> zygo(jWC|_IRw|456`roEyXtkNLWNAt-4N1qyN$I@DvBzt;e|?g<*HK1%~cq|^u*}C zmMrwh>{QAq?Ar~4l^DqT%SQ)w)FA(#7#u+N;>E975rYML>)LgE`2<7nN=C1pC{IkV zVw}_&v6j&S?QVh*)wF3#XmE@0($^BVl1969csLKUBNer{suVd!a~B!0MxWY?=(GD6 zy$G&ERFR#i6G4=2F?R4}Mz3B?3tnpoX3)qFF2sh9-Jn*e%9F>i{WG7$_~XyOO2!+@ z6k+38KyD@-0=uee54D0!Z1@B^ilj~StchdOn(*qvg~s5QJpWGc!6U^Aj!xt-HZn_V zS%|fyQ5YS@EP2lBIodXCLjG_+a)%En+7jzngk@J>6D~^xbxKkvf-R0-c%mX+o{?&j zZZ%RxFeav8Y0gkwtdtrwUb-i0Egd2C=ADu%w5VV-hNJvl)GZ?M;y$!?b=S+wKRK7Q zcOjPT!p<*#8m;TsBih=@Xc&c)?Vy`Ys>IvK@|1%N+M6J-^RCRaZcPP2eQh9DEGZr+ z?8B~wF14mk4Xkuen{wY^CWwS1PI<8gikY*)3?RSo5l8es4*J z43k_BIwc}of=6Pfs%xIxlMDGOJN zvl!a>G)52XMqA%fbgkZi%)%bN*ZzZw2!rn4@+J)2eK#kWuEW{)W~-`y1vhA5-7p%R z&f5N!a9f8cK1Xa=O}=9{wg%}Ur^+8Y(!UCeqw>%wj@|bYHD-bZO~mk3L$9_^MmF3G zvCiK^e@q6G?tHkM8%GqsBMZaB20W$UEt_5r~jc#WlR>Bv{6W>A=!#InoY zLOd04@Rz?*7PpW8u|+}bt`?+Z(GsX{Br4A2$ZZ(26Degmr9`O=t2KgHTL*==R3xcP z&Y(J7hC@6_x8zVz!CX3l4Xtss6i7r#E6kXMNN1~>9KTRzewfp))ij%)SBBl0fZdYP zd!zzQD5u8yk-u|41|Rqz7_tCFUMThZJVj)yQf6^Cwtn|Ew6cm5J|u1Bq>MWX-AfB&NE;C z62@=-0le`E6-CurMKjoIy)BuUmhMGJb}pPx!@GLWMT+wH2R?wA=MEy)o57~feFp8P zY@YXAyt4<1FD<|iw{FGQu~GEI<4C64)V*QiVk+VzOV^9GWf4ir#oYgHJz!wq>iZV#_6@_{)&lum)4x z_Of*CLVQ7wdT#XT-(h0qH%mcIF7yzMIvvTN3bPceK>PpJi(=3Nny zbSn}p$dGKQUlX&-t~RR)#F7I<8NCD^yke(vdf#4^aAh}M-{tS9-&^tC4`KU_pToXy z+|K8sx}a)Kh{h{;*V1#hs1xB%(?j>)g~`Wv(9F)f=Qn)(daVB7hZtcp^#LrEr1T1J zZSJ*lVyVVjhy)mkex9Whn=EinKDHe@KlfQI-Fl7M?-c~HnW0;C;+MbUY8?FToy;A+ zs&Nc7VZ=Of+e!G6s#+S5WBU)kgQq_I1@!uH74GJ-+O|%0HXm9Mqlvp|j%0`T>fr9^ zK;qo>XdwZW<>%tTA+<(1^6(>=-2N;hRgBnjvEjN;VbKMbFg--WrGy|XESoH1p|M4` z86(gC^vB4qScASZ&cdpT{~QDN-jC|GJ(RYoW1VW4!SSn- zhQds9&RBKn6M&GVK_Aayt(Hekbnw=tr>f z^o@v9_*iQO1*zeOrts9Q-$pc@!StS&kz$cF`s@pM`rmJXTP&h5G)A74!0e%ZJbl}( zssI|_!%~_hZFypv*S^JE5N&Kvmx7KiG<|fGMO=WrH+@Yhuj+KwiS#l4>@%2nl zS)mDikfmokO4q2A)hRVZBq2-5q&XC>%HOLkOYxZ66(s86?=0s4z5xbiOV)}L-&6b)h6(~CIaR#JNw~46+WBiU7IhB zq!NuR4!TsYnyBg>@G=Ib*cMq^k<}AMpCeYEf&dzfiGI-wOQ7hb+nA zkN7_){y&c3xC0 AQ~&?~ literal 0 HcmV?d00001 diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..0dd5189 --- /dev/null +++ b/public/index.html @@ -0,0 +1,275 @@ + + + + + Ruby on Rails: Welcome aboard + + + + + + +
+ + +
+ + + + +
+

Getting started

+

Here’s how to get rolling:

+ +
    +
  1. +

    Use script/generate to create your models and controllers

    +

    To see all available options, run it without parameters.

    +
  2. + +
  3. +

    Set up a default route and remove or rename this file

    +

    Routes are set up in config/routes.rb.

    +
  4. + +
  5. +

    Create your database

    +

    Run rake db:migrate to create your database. If you're not using SQLite (the default), edit config/database.yml with your username and password.

    +
  6. +
+
+
+ + +
+ + \ No newline at end of file diff --git a/public/javascripts/application.js b/public/javascripts/application.js new file mode 100644 index 0000000..fe45776 --- /dev/null +++ b/public/javascripts/application.js @@ -0,0 +1,2 @@ +// Place your application-specific JavaScript functions and classes here +// This file is automatically included by javascript_include_tag :defaults diff --git a/public/javascripts/controls.js b/public/javascripts/controls.js new file mode 100644 index 0000000..ca29aef --- /dev/null +++ b/public/javascripts/controls.js @@ -0,0 +1,963 @@ +// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) +// (c) 2005-2008 Ivan Krstic (http://blogs.law.harvard.edu/ivan) +// (c) 2005-2008 Jon Tirsen (http://www.tirsen.com) +// Contributors: +// Richard Livsey +// Rahul Bhargava +// Rob Wills +// +// script.aculo.us is freely distributable under the terms of an MIT-style license. +// For details, see the script.aculo.us web site: http://script.aculo.us/ + +// Autocompleter.Base handles all the autocompletion functionality +// that's independent of the data source for autocompletion. This +// includes drawing the autocompletion menu, observing keyboard +// and mouse events, and similar. +// +// Specific autocompleters need to provide, at the very least, +// a getUpdatedChoices function that will be invoked every time +// the text inside the monitored textbox changes. This method +// should get the text for which to provide autocompletion by +// invoking this.getToken(), NOT by directly accessing +// this.element.value. This is to allow incremental tokenized +// autocompletion. Specific auto-completion logic (AJAX, etc) +// belongs in getUpdatedChoices. +// +// Tokenized incremental autocompletion is enabled automatically +// when an autocompleter is instantiated with the 'tokens' option +// in the options parameter, e.g.: +// new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' }); +// will incrementally autocomplete with a comma as the token. +// Additionally, ',' in the above example can be replaced with +// a token array, e.g. { tokens: [',', '\n'] } which +// enables autocompletion on multiple tokens. This is most +// useful when one of the tokens is \n (a newline), as it +// allows smart autocompletion after linebreaks. + +if(typeof Effect == 'undefined') + throw("controls.js requires including script.aculo.us' effects.js library"); + +var Autocompleter = { }; +Autocompleter.Base = Class.create({ + baseInitialize: function(element, update, options) { + element = $(element); + this.element = element; + this.update = $(update); + this.hasFocus = false; + this.changed = false; + this.active = false; + this.index = 0; + this.entryCount = 0; + this.oldElementValue = this.element.value; + + if(this.setOptions) + this.setOptions(options); + else + this.options = options || { }; + + this.options.paramName = this.options.paramName || this.element.name; + this.options.tokens = this.options.tokens || []; + this.options.frequency = this.options.frequency || 0.4; + this.options.minChars = this.options.minChars || 1; + this.options.onShow = this.options.onShow || + function(element, update){ + if(!update.style.position || update.style.position=='absolute') { + update.style.position = 'absolute'; + Position.clone(element, update, { + setHeight: false, + offsetTop: element.offsetHeight + }); + } + Effect.Appear(update,{duration:0.15}); + }; + this.options.onHide = this.options.onHide || + function(element, update){ new Effect.Fade(update,{duration:0.15}) }; + + if(typeof(this.options.tokens) == 'string') + this.options.tokens = new Array(this.options.tokens); + // Force carriage returns as token delimiters anyway + if (!this.options.tokens.include('\n')) + this.options.tokens.push('\n'); + + this.observer = null; + + this.element.setAttribute('autocomplete','off'); + + Element.hide(this.update); + + Event.observe(this.element, 'blur', this.onBlur.bindAsEventListener(this)); + Event.observe(this.element, 'keydown', this.onKeyPress.bindAsEventListener(this)); + }, + + show: function() { + if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update); + if(!this.iefix && + (Prototype.Browser.IE) && + (Element.getStyle(this.update, 'position')=='absolute')) { + new Insertion.After(this.update, + ''); + this.iefix = $(this.update.id+'_iefix'); + } + if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50); + }, + + fixIEOverlapping: function() { + Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)}); + this.iefix.style.zIndex = 1; + this.update.style.zIndex = 2; + Element.show(this.iefix); + }, + + hide: function() { + this.stopIndicator(); + if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update); + if(this.iefix) Element.hide(this.iefix); + }, + + startIndicator: function() { + if(this.options.indicator) Element.show(this.options.indicator); + }, + + stopIndicator: function() { + if(this.options.indicator) Element.hide(this.options.indicator); + }, + + onKeyPress: function(event) { + if(this.active) + switch(event.keyCode) { + case Event.KEY_TAB: + case Event.KEY_RETURN: + this.selectEntry(); + Event.stop(event); + case Event.KEY_ESC: + this.hide(); + this.active = false; + Event.stop(event); + return; + case Event.KEY_LEFT: + case Event.KEY_RIGHT: + return; + case Event.KEY_UP: + this.markPrevious(); + this.render(); + Event.stop(event); + return; + case Event.KEY_DOWN: + this.markNext(); + this.render(); + Event.stop(event); + return; + } + else + if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN || + (Prototype.Browser.WebKit > 0 && event.keyCode == 0)) return; + + this.changed = true; + this.hasFocus = true; + + if(this.observer) clearTimeout(this.observer); + this.observer = + setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000); + }, + + activate: function() { + this.changed = false; + this.hasFocus = true; + this.getUpdatedChoices(); + }, + + onHover: function(event) { + var element = Event.findElement(event, 'LI'); + if(this.index != element.autocompleteIndex) + { + this.index = element.autocompleteIndex; + this.render(); + } + Event.stop(event); + }, + + onClick: function(event) { + var element = Event.findElement(event, 'LI'); + this.index = element.autocompleteIndex; + this.selectEntry(); + this.hide(); + }, + + onBlur: function(event) { + // needed to make click events working + setTimeout(this.hide.bind(this), 250); + this.hasFocus = false; + this.active = false; + }, + + render: function() { + if(this.entryCount > 0) { + for (var i = 0; i < this.entryCount; i++) + this.index==i ? + Element.addClassName(this.getEntry(i),"selected") : + Element.removeClassName(this.getEntry(i),"selected"); + if(this.hasFocus) { + this.show(); + this.active = true; + } + } else { + this.active = false; + this.hide(); + } + }, + + markPrevious: function() { + if(this.index > 0) this.index--; + else this.index = this.entryCount-1; + this.getEntry(this.index).scrollIntoView(true); + }, + + markNext: function() { + if(this.index < this.entryCount-1) this.index++; + else this.index = 0; + this.getEntry(this.index).scrollIntoView(false); + }, + + getEntry: function(index) { + return this.update.firstChild.childNodes[index]; + }, + + getCurrentEntry: function() { + return this.getEntry(this.index); + }, + + selectEntry: function() { + this.active = false; + this.updateElement(this.getCurrentEntry()); + }, + + updateElement: function(selectedElement) { + if (this.options.updateElement) { + this.options.updateElement(selectedElement); + return; + } + var value = ''; + if (this.options.select) { + var nodes = $(selectedElement).select('.' + this.options.select) || []; + if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select); + } else + value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal'); + + var bounds = this.getTokenBounds(); + if (bounds[0] != -1) { + var newValue = this.element.value.substr(0, bounds[0]); + var whitespace = this.element.value.substr(bounds[0]).match(/^\s+/); + if (whitespace) + newValue += whitespace[0]; + this.element.value = newValue + value + this.element.value.substr(bounds[1]); + } else { + this.element.value = value; + } + this.oldElementValue = this.element.value; + this.element.focus(); + + if (this.options.afterUpdateElement) + this.options.afterUpdateElement(this.element, selectedElement); + }, + + updateChoices: function(choices) { + if(!this.changed && this.hasFocus) { + this.update.innerHTML = choices; + Element.cleanWhitespace(this.update); + Element.cleanWhitespace(this.update.down()); + + if(this.update.firstChild && this.update.down().childNodes) { + this.entryCount = + this.update.down().childNodes.length; + for (var i = 0; i < this.entryCount; i++) { + var entry = this.getEntry(i); + entry.autocompleteIndex = i; + this.addObservers(entry); + } + } else { + this.entryCount = 0; + } + + this.stopIndicator(); + this.index = 0; + + if(this.entryCount==1 && this.options.autoSelect) { + this.selectEntry(); + this.hide(); + } else { + this.render(); + } + } + }, + + addObservers: function(element) { + Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this)); + Event.observe(element, "click", this.onClick.bindAsEventListener(this)); + }, + + onObserverEvent: function() { + this.changed = false; + this.tokenBounds = null; + if(this.getToken().length>=this.options.minChars) { + this.getUpdatedChoices(); + } else { + this.active = false; + this.hide(); + } + this.oldElementValue = this.element.value; + }, + + getToken: function() { + var bounds = this.getTokenBounds(); + return this.element.value.substring(bounds[0], bounds[1]).strip(); + }, + + getTokenBounds: function() { + if (null != this.tokenBounds) return this.tokenBounds; + var value = this.element.value; + if (value.strip().empty()) return [-1, 0]; + var diff = arguments.callee.getFirstDifferencePos(value, this.oldElementValue); + var offset = (diff == this.oldElementValue.length ? 1 : 0); + var prevTokenPos = -1, nextTokenPos = value.length; + var tp; + for (var index = 0, l = this.options.tokens.length; index < l; ++index) { + tp = value.lastIndexOf(this.options.tokens[index], diff + offset - 1); + if (tp > prevTokenPos) prevTokenPos = tp; + tp = value.indexOf(this.options.tokens[index], diff + offset); + if (-1 != tp && tp < nextTokenPos) nextTokenPos = tp; + } + return (this.tokenBounds = [prevTokenPos + 1, nextTokenPos]); + } +}); + +Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) { + var boundary = Math.min(newS.length, oldS.length); + for (var index = 0; index < boundary; ++index) + if (newS[index] != oldS[index]) + return index; + return boundary; +}; + +Ajax.Autocompleter = Class.create(Autocompleter.Base, { + initialize: function(element, update, url, options) { + this.baseInitialize(element, update, options); + this.options.asynchronous = true; + this.options.onComplete = this.onComplete.bind(this); + this.options.defaultParams = this.options.parameters || null; + this.url = url; + }, + + getUpdatedChoices: function() { + this.startIndicator(); + + var entry = encodeURIComponent(this.options.paramName) + '=' + + encodeURIComponent(this.getToken()); + + this.options.parameters = this.options.callback ? + this.options.callback(this.element, entry) : entry; + + if(this.options.defaultParams) + this.options.parameters += '&' + this.options.defaultParams; + + new Ajax.Request(this.url, this.options); + }, + + onComplete: function(request) { + this.updateChoices(request.responseText); + } +}); + +// The local array autocompleter. Used when you'd prefer to +// inject an array of autocompletion options into the page, rather +// than sending out Ajax queries, which can be quite slow sometimes. +// +// The constructor takes four parameters. The first two are, as usual, +// the id of the monitored textbox, and id of the autocompletion menu. +// The third is the array you want to autocomplete from, and the fourth +// is the options block. +// +// Extra local autocompletion options: +// - choices - How many autocompletion choices to offer +// +// - partialSearch - If false, the autocompleter will match entered +// text only at the beginning of strings in the +// autocomplete array. Defaults to true, which will +// match text at the beginning of any *word* in the +// strings in the autocomplete array. If you want to +// search anywhere in the string, additionally set +// the option fullSearch to true (default: off). +// +// - fullSsearch - Search anywhere in autocomplete array strings. +// +// - partialChars - How many characters to enter before triggering +// a partial match (unlike minChars, which defines +// how many characters are required to do any match +// at all). Defaults to 2. +// +// - ignoreCase - Whether to ignore case when autocompleting. +// Defaults to true. +// +// It's possible to pass in a custom function as the 'selector' +// option, if you prefer to write your own autocompletion logic. +// In that case, the other options above will not apply unless +// you support them. + +Autocompleter.Local = Class.create(Autocompleter.Base, { + initialize: function(element, update, array, options) { + this.baseInitialize(element, update, options); + this.options.array = array; + }, + + getUpdatedChoices: function() { + this.updateChoices(this.options.selector(this)); + }, + + setOptions: function(options) { + this.options = Object.extend({ + choices: 10, + partialSearch: true, + partialChars: 2, + ignoreCase: true, + fullSearch: false, + selector: function(instance) { + var ret = []; // Beginning matches + var partial = []; // Inside matches + var entry = instance.getToken(); + var count = 0; + + for (var i = 0; i < instance.options.array.length && + ret.length < instance.options.choices ; i++) { + + var elem = instance.options.array[i]; + var foundPos = instance.options.ignoreCase ? + elem.toLowerCase().indexOf(entry.toLowerCase()) : + elem.indexOf(entry); + + while (foundPos != -1) { + if (foundPos == 0 && elem.length != entry.length) { + ret.push("
  • " + elem.substr(0, entry.length) + "" + + elem.substr(entry.length) + "
  • "); + break; + } else if (entry.length >= instance.options.partialChars && + instance.options.partialSearch && foundPos != -1) { + if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) { + partial.push("
  • " + elem.substr(0, foundPos) + "" + + elem.substr(foundPos, entry.length) + "" + elem.substr( + foundPos + entry.length) + "
  • "); + break; + } + } + + foundPos = instance.options.ignoreCase ? + elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) : + elem.indexOf(entry, foundPos + 1); + + } + } + if (partial.length) + ret = ret.concat(partial.slice(0, instance.options.choices - ret.length)); + return "
      " + ret.join('') + "
    "; + } + }, options || { }); + } +}); + +// AJAX in-place editor and collection editor +// Full rewrite by Christophe Porteneuve (April 2007). + +// Use this if you notice weird scrolling problems on some browsers, +// the DOM might be a bit confused when this gets called so do this +// waits 1 ms (with setTimeout) until it does the activation +Field.scrollFreeActivate = function(field) { + setTimeout(function() { + Field.activate(field); + }, 1); +}; + +Ajax.InPlaceEditor = Class.create({ + initialize: function(element, url, options) { + this.url = url; + this.element = element = $(element); + this.prepareOptions(); + this._controls = { }; + arguments.callee.dealWithDeprecatedOptions(options); // DEPRECATION LAYER!!! + Object.extend(this.options, options || { }); + if (!this.options.formId && this.element.id) { + this.options.formId = this.element.id + '-inplaceeditor'; + if ($(this.options.formId)) + this.options.formId = ''; + } + if (this.options.externalControl) + this.options.externalControl = $(this.options.externalControl); + if (!this.options.externalControl) + this.options.externalControlOnly = false; + this._originalBackground = this.element.getStyle('background-color') || 'transparent'; + this.element.title = this.options.clickToEditText; + this._boundCancelHandler = this.handleFormCancellation.bind(this); + this._boundComplete = (this.options.onComplete || Prototype.emptyFunction).bind(this); + this._boundFailureHandler = this.handleAJAXFailure.bind(this); + this._boundSubmitHandler = this.handleFormSubmission.bind(this); + this._boundWrapperHandler = this.wrapUp.bind(this); + this.registerListeners(); + }, + checkForEscapeOrReturn: function(e) { + if (!this._editing || e.ctrlKey || e.altKey || e.shiftKey) return; + if (Event.KEY_ESC == e.keyCode) + this.handleFormCancellation(e); + else if (Event.KEY_RETURN == e.keyCode) + this.handleFormSubmission(e); + }, + createControl: function(mode, handler, extraClasses) { + var control = this.options[mode + 'Control']; + var text = this.options[mode + 'Text']; + if ('button' == control) { + var btn = document.createElement('input'); + btn.type = 'submit'; + btn.value = text; + btn.className = 'editor_' + mode + '_button'; + if ('cancel' == mode) + btn.onclick = this._boundCancelHandler; + this._form.appendChild(btn); + this._controls[mode] = btn; + } else if ('link' == control) { + var link = document.createElement('a'); + link.href = '#'; + link.appendChild(document.createTextNode(text)); + link.onclick = 'cancel' == mode ? this._boundCancelHandler : this._boundSubmitHandler; + link.className = 'editor_' + mode + '_link'; + if (extraClasses) + link.className += ' ' + extraClasses; + this._form.appendChild(link); + this._controls[mode] = link; + } + }, + createEditField: function() { + var text = (this.options.loadTextURL ? this.options.loadingText : this.getText()); + var fld; + if (1 >= this.options.rows && !/\r|\n/.test(this.getText())) { + fld = document.createElement('input'); + fld.type = 'text'; + var size = this.options.size || this.options.cols || 0; + if (0 < size) fld.size = size; + } else { + fld = document.createElement('textarea'); + fld.rows = (1 >= this.options.rows ? this.options.autoRows : this.options.rows); + fld.cols = this.options.cols || 40; + } + fld.name = this.options.paramName; + fld.value = text; // No HTML breaks conversion anymore + fld.className = 'editor_field'; + if (this.options.submitOnBlur) + fld.onblur = this._boundSubmitHandler; + this._controls.editor = fld; + if (this.options.loadTextURL) + this.loadExternalText(); + this._form.appendChild(this._controls.editor); + }, + createForm: function() { + var ipe = this; + function addText(mode, condition) { + var text = ipe.options['text' + mode + 'Controls']; + if (!text || condition === false) return; + ipe._form.appendChild(document.createTextNode(text)); + }; + this._form = $(document.createElement('form')); + this._form.id = this.options.formId; + this._form.addClassName(this.options.formClassName); + this._form.onsubmit = this._boundSubmitHandler; + this.createEditField(); + if ('textarea' == this._controls.editor.tagName.toLowerCase()) + this._form.appendChild(document.createElement('br')); + if (this.options.onFormCustomization) + this.options.onFormCustomization(this, this._form); + addText('Before', this.options.okControl || this.options.cancelControl); + this.createControl('ok', this._boundSubmitHandler); + addText('Between', this.options.okControl && this.options.cancelControl); + this.createControl('cancel', this._boundCancelHandler, 'editor_cancel'); + addText('After', this.options.okControl || this.options.cancelControl); + }, + destroy: function() { + if (this._oldInnerHTML) + this.element.innerHTML = this._oldInnerHTML; + this.leaveEditMode(); + this.unregisterListeners(); + }, + enterEditMode: function(e) { + if (this._saving || this._editing) return; + this._editing = true; + this.triggerCallback('onEnterEditMode'); + if (this.options.externalControl) + this.options.externalControl.hide(); + this.element.hide(); + this.createForm(); + this.element.parentNode.insertBefore(this._form, this.element); + if (!this.options.loadTextURL) + this.postProcessEditField(); + if (e) Event.stop(e); + }, + enterHover: function(e) { + if (this.options.hoverClassName) + this.element.addClassName(this.options.hoverClassName); + if (this._saving) return; + this.triggerCallback('onEnterHover'); + }, + getText: function() { + return this.element.innerHTML.unescapeHTML(); + }, + handleAJAXFailure: function(transport) { + this.triggerCallback('onFailure', transport); + if (this._oldInnerHTML) { + this.element.innerHTML = this._oldInnerHTML; + this._oldInnerHTML = null; + } + }, + handleFormCancellation: function(e) { + this.wrapUp(); + if (e) Event.stop(e); + }, + handleFormSubmission: function(e) { + var form = this._form; + var value = $F(this._controls.editor); + this.prepareSubmission(); + var params = this.options.callback(form, value) || ''; + if (Object.isString(params)) + params = params.toQueryParams(); + params.editorId = this.element.id; + if (this.options.htmlResponse) { + var options = Object.extend({ evalScripts: true }, this.options.ajaxOptions); + Object.extend(options, { + parameters: params, + onComplete: this._boundWrapperHandler, + onFailure: this._boundFailureHandler + }); + new Ajax.Updater({ success: this.element }, this.url, options); + } else { + var options = Object.extend({ method: 'get' }, this.options.ajaxOptions); + Object.extend(options, { + parameters: params, + onComplete: this._boundWrapperHandler, + onFailure: this._boundFailureHandler + }); + new Ajax.Request(this.url, options); + } + if (e) Event.stop(e); + }, + leaveEditMode: function() { + this.element.removeClassName(this.options.savingClassName); + this.removeForm(); + this.leaveHover(); + this.element.style.backgroundColor = this._originalBackground; + this.element.show(); + if (this.options.externalControl) + this.options.externalControl.show(); + this._saving = false; + this._editing = false; + this._oldInnerHTML = null; + this.triggerCallback('onLeaveEditMode'); + }, + leaveHover: function(e) { + if (this.options.hoverClassName) + this.element.removeClassName(this.options.hoverClassName); + if (this._saving) return; + this.triggerCallback('onLeaveHover'); + }, + loadExternalText: function() { + this._form.addClassName(this.options.loadingClassName); + this._controls.editor.disabled = true; + var options = Object.extend({ method: 'get' }, this.options.ajaxOptions); + Object.extend(options, { + parameters: 'editorId=' + encodeURIComponent(this.element.id), + onComplete: Prototype.emptyFunction, + onSuccess: function(transport) { + this._form.removeClassName(this.options.loadingClassName); + var text = transport.responseText; + if (this.options.stripLoadedTextTags) + text = text.stripTags(); + this._controls.editor.value = text; + this._controls.editor.disabled = false; + this.postProcessEditField(); + }.bind(this), + onFailure: this._boundFailureHandler + }); + new Ajax.Request(this.options.loadTextURL, options); + }, + postProcessEditField: function() { + var fpc = this.options.fieldPostCreation; + if (fpc) + $(this._controls.editor)['focus' == fpc ? 'focus' : 'activate'](); + }, + prepareOptions: function() { + this.options = Object.clone(Ajax.InPlaceEditor.DefaultOptions); + Object.extend(this.options, Ajax.InPlaceEditor.DefaultCallbacks); + [this._extraDefaultOptions].flatten().compact().each(function(defs) { + Object.extend(this.options, defs); + }.bind(this)); + }, + prepareSubmission: function() { + this._saving = true; + this.removeForm(); + this.leaveHover(); + this.showSaving(); + }, + registerListeners: function() { + this._listeners = { }; + var listener; + $H(Ajax.InPlaceEditor.Listeners).each(function(pair) { + listener = this[pair.value].bind(this); + this._listeners[pair.key] = listener; + if (!this.options.externalControlOnly) + this.element.observe(pair.key, listener); + if (this.options.externalControl) + this.options.externalControl.observe(pair.key, listener); + }.bind(this)); + }, + removeForm: function() { + if (!this._form) return; + this._form.remove(); + this._form = null; + this._controls = { }; + }, + showSaving: function() { + this._oldInnerHTML = this.element.innerHTML; + this.element.innerHTML = this.options.savingText; + this.element.addClassName(this.options.savingClassName); + this.element.style.backgroundColor = this._originalBackground; + this.element.show(); + }, + triggerCallback: function(cbName, arg) { + if ('function' == typeof this.options[cbName]) { + this.options[cbName](this, arg); + } + }, + unregisterListeners: function() { + $H(this._listeners).each(function(pair) { + if (!this.options.externalControlOnly) + this.element.stopObserving(pair.key, pair.value); + if (this.options.externalControl) + this.options.externalControl.stopObserving(pair.key, pair.value); + }.bind(this)); + }, + wrapUp: function(transport) { + this.leaveEditMode(); + // Can't use triggerCallback due to backward compatibility: requires + // binding + direct element + this._boundComplete(transport, this.element); + } +}); + +Object.extend(Ajax.InPlaceEditor.prototype, { + dispose: Ajax.InPlaceEditor.prototype.destroy +}); + +Ajax.InPlaceCollectionEditor = Class.create(Ajax.InPlaceEditor, { + initialize: function($super, element, url, options) { + this._extraDefaultOptions = Ajax.InPlaceCollectionEditor.DefaultOptions; + $super(element, url, options); + }, + + createEditField: function() { + var list = document.createElement('select'); + list.name = this.options.paramName; + list.size = 1; + this._controls.editor = list; + this._collection = this.options.collection || []; + if (this.options.loadCollectionURL) + this.loadCollection(); + else + this.checkForExternalText(); + this._form.appendChild(this._controls.editor); + }, + + loadCollection: function() { + this._form.addClassName(this.options.loadingClassName); + this.showLoadingText(this.options.loadingCollectionText); + var options = Object.extend({ method: 'get' }, this.options.ajaxOptions); + Object.extend(options, { + parameters: 'editorId=' + encodeURIComponent(this.element.id), + onComplete: Prototype.emptyFunction, + onSuccess: function(transport) { + var js = transport.responseText.strip(); + if (!/^\[.*\]$/.test(js)) // TODO: improve sanity check + throw('Server returned an invalid collection representation.'); + this._collection = eval(js); + this.checkForExternalText(); + }.bind(this), + onFailure: this.onFailure + }); + new Ajax.Request(this.options.loadCollectionURL, options); + }, + + showLoadingText: function(text) { + this._controls.editor.disabled = true; + var tempOption = this._controls.editor.firstChild; + if (!tempOption) { + tempOption = document.createElement('option'); + tempOption.value = ''; + this._controls.editor.appendChild(tempOption); + tempOption.selected = true; + } + tempOption.update((text || '').stripScripts().stripTags()); + }, + + checkForExternalText: function() { + this._text = this.getText(); + if (this.options.loadTextURL) + this.loadExternalText(); + else + this.buildOptionList(); + }, + + loadExternalText: function() { + this.showLoadingText(this.options.loadingText); + var options = Object.extend({ method: 'get' }, this.options.ajaxOptions); + Object.extend(options, { + parameters: 'editorId=' + encodeURIComponent(this.element.id), + onComplete: Prototype.emptyFunction, + onSuccess: function(transport) { + this._text = transport.responseText.strip(); + this.buildOptionList(); + }.bind(this), + onFailure: this.onFailure + }); + new Ajax.Request(this.options.loadTextURL, options); + }, + + buildOptionList: function() { + this._form.removeClassName(this.options.loadingClassName); + this._collection = this._collection.map(function(entry) { + return 2 === entry.length ? entry : [entry, entry].flatten(); + }); + var marker = ('value' in this.options) ? this.options.value : this._text; + var textFound = this._collection.any(function(entry) { + return entry[0] == marker; + }.bind(this)); + this._controls.editor.update(''); + var option; + this._collection.each(function(entry, index) { + option = document.createElement('option'); + option.value = entry[0]; + option.selected = textFound ? entry[0] == marker : 0 == index; + option.appendChild(document.createTextNode(entry[1])); + this._controls.editor.appendChild(option); + }.bind(this)); + this._controls.editor.disabled = false; + Field.scrollFreeActivate(this._controls.editor); + } +}); + +//**** DEPRECATION LAYER FOR InPlace[Collection]Editor! **** +//**** This only exists for a while, in order to let **** +//**** users adapt to the new API. Read up on the new **** +//**** API and convert your code to it ASAP! **** + +Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) { + if (!options) return; + function fallback(name, expr) { + if (name in options || expr === undefined) return; + options[name] = expr; + }; + fallback('cancelControl', (options.cancelLink ? 'link' : (options.cancelButton ? 'button' : + options.cancelLink == options.cancelButton == false ? false : undefined))); + fallback('okControl', (options.okLink ? 'link' : (options.okButton ? 'button' : + options.okLink == options.okButton == false ? false : undefined))); + fallback('highlightColor', options.highlightcolor); + fallback('highlightEndColor', options.highlightendcolor); +}; + +Object.extend(Ajax.InPlaceEditor, { + DefaultOptions: { + ajaxOptions: { }, + autoRows: 3, // Use when multi-line w/ rows == 1 + cancelControl: 'link', // 'link'|'button'|false + cancelText: 'cancel', + clickToEditText: 'Click to edit', + externalControl: null, // id|elt + externalControlOnly: false, + fieldPostCreation: 'activate', // 'activate'|'focus'|false + formClassName: 'inplaceeditor-form', + formId: null, // id|elt + highlightColor: '#ffff99', + highlightEndColor: '#ffffff', + hoverClassName: '', + htmlResponse: true, + loadingClassName: 'inplaceeditor-loading', + loadingText: 'Loading...', + okControl: 'button', // 'link'|'button'|false + okText: 'ok', + paramName: 'value', + rows: 1, // If 1 and multi-line, uses autoRows + savingClassName: 'inplaceeditor-saving', + savingText: 'Saving...', + size: 0, + stripLoadedTextTags: false, + submitOnBlur: false, + textAfterControls: '', + textBeforeControls: '', + textBetweenControls: '' + }, + DefaultCallbacks: { + callback: function(form) { + return Form.serialize(form); + }, + onComplete: function(transport, element) { + // For backward compatibility, this one is bound to the IPE, and passes + // the element directly. It was too often customized, so we don't break it. + new Effect.Highlight(element, { + startcolor: this.options.highlightColor, keepBackgroundImage: true }); + }, + onEnterEditMode: null, + onEnterHover: function(ipe) { + ipe.element.style.backgroundColor = ipe.options.highlightColor; + if (ipe._effect) + ipe._effect.cancel(); + }, + onFailure: function(transport, ipe) { + alert('Error communication with the server: ' + transport.responseText.stripTags()); + }, + onFormCustomization: null, // Takes the IPE and its generated form, after editor, before controls. + onLeaveEditMode: null, + onLeaveHover: function(ipe) { + ipe._effect = new Effect.Highlight(ipe.element, { + startcolor: ipe.options.highlightColor, endcolor: ipe.options.highlightEndColor, + restorecolor: ipe._originalBackground, keepBackgroundImage: true + }); + } + }, + Listeners: { + click: 'enterEditMode', + keydown: 'checkForEscapeOrReturn', + mouseover: 'enterHover', + mouseout: 'leaveHover' + } +}); + +Ajax.InPlaceCollectionEditor.DefaultOptions = { + loadingCollectionText: 'Loading options...' +}; + +// Delayed observer, like Form.Element.Observer, +// but waits for delay after last key input +// Ideal for live-search fields + +Form.Element.DelayedObserver = Class.create({ + initialize: function(element, delay, callback) { + this.delay = delay || 0.5; + this.element = $(element); + this.callback = callback; + this.timer = null; + this.lastValue = $F(this.element); + Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this)); + }, + delayedListener: function(event) { + if(this.lastValue == $F(this.element)) return; + if(this.timer) clearTimeout(this.timer); + this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000); + this.lastValue = $F(this.element); + }, + onTimerEvent: function() { + this.timer = null; + this.callback(this.element, $F(this.element)); + } +}); \ No newline at end of file diff --git a/public/javascripts/dragdrop.js b/public/javascripts/dragdrop.js new file mode 100644 index 0000000..07229f9 --- /dev/null +++ b/public/javascripts/dragdrop.js @@ -0,0 +1,973 @@ +// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) +// (c) 2005-2008 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz) +// +// script.aculo.us is freely distributable under the terms of an MIT-style license. +// For details, see the script.aculo.us web site: http://script.aculo.us/ + +if(Object.isUndefined(Effect)) + throw("dragdrop.js requires including script.aculo.us' effects.js library"); + +var Droppables = { + drops: [], + + remove: function(element) { + this.drops = this.drops.reject(function(d) { return d.element==$(element) }); + }, + + add: function(element) { + element = $(element); + var options = Object.extend({ + greedy: true, + hoverclass: null, + tree: false + }, arguments[1] || { }); + + // cache containers + if(options.containment) { + options._containers = []; + var containment = options.containment; + if(Object.isArray(containment)) { + containment.each( function(c) { options._containers.push($(c)) }); + } else { + options._containers.push($(containment)); + } + } + + if(options.accept) options.accept = [options.accept].flatten(); + + Element.makePositioned(element); // fix IE + options.element = element; + + this.drops.push(options); + }, + + findDeepestChild: function(drops) { + deepest = drops[0]; + + for (i = 1; i < drops.length; ++i) + if (Element.isParent(drops[i].element, deepest.element)) + deepest = drops[i]; + + return deepest; + }, + + isContained: function(element, drop) { + var containmentNode; + if(drop.tree) { + containmentNode = element.treeNode; + } else { + containmentNode = element.parentNode; + } + return drop._containers.detect(function(c) { return containmentNode == c }); + }, + + isAffected: function(point, element, drop) { + return ( + (drop.element!=element) && + ((!drop._containers) || + this.isContained(element, drop)) && + ((!drop.accept) || + (Element.classNames(element).detect( + function(v) { return drop.accept.include(v) } ) )) && + Position.within(drop.element, point[0], point[1]) ); + }, + + deactivate: function(drop) { + if(drop.hoverclass) + Element.removeClassName(drop.element, drop.hoverclass); + this.last_active = null; + }, + + activate: function(drop) { + if(drop.hoverclass) + Element.addClassName(drop.element, drop.hoverclass); + this.last_active = drop; + }, + + show: function(point, element) { + if(!this.drops.length) return; + var drop, affected = []; + + this.drops.each( function(drop) { + if(Droppables.isAffected(point, element, drop)) + affected.push(drop); + }); + + if(affected.length>0) + drop = Droppables.findDeepestChild(affected); + + if(this.last_active && this.last_active != drop) this.deactivate(this.last_active); + if (drop) { + Position.within(drop.element, point[0], point[1]); + if(drop.onHover) + drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element)); + + if (drop != this.last_active) Droppables.activate(drop); + } + }, + + fire: function(event, element) { + if(!this.last_active) return; + Position.prepare(); + + if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active)) + if (this.last_active.onDrop) { + this.last_active.onDrop(element, this.last_active.element, event); + return true; + } + }, + + reset: function() { + if(this.last_active) + this.deactivate(this.last_active); + } +}; + +var Draggables = { + drags: [], + observers: [], + + register: function(draggable) { + if(this.drags.length == 0) { + this.eventMouseUp = this.endDrag.bindAsEventListener(this); + this.eventMouseMove = this.updateDrag.bindAsEventListener(this); + this.eventKeypress = this.keyPress.bindAsEventListener(this); + + Event.observe(document, "mouseup", this.eventMouseUp); + Event.observe(document, "mousemove", this.eventMouseMove); + Event.observe(document, "keypress", this.eventKeypress); + } + this.drags.push(draggable); + }, + + unregister: function(draggable) { + this.drags = this.drags.reject(function(d) { return d==draggable }); + if(this.drags.length == 0) { + Event.stopObserving(document, "mouseup", this.eventMouseUp); + Event.stopObserving(document, "mousemove", this.eventMouseMove); + Event.stopObserving(document, "keypress", this.eventKeypress); + } + }, + + activate: function(draggable) { + if(draggable.options.delay) { + this._timeout = setTimeout(function() { + Draggables._timeout = null; + window.focus(); + Draggables.activeDraggable = draggable; + }.bind(this), draggable.options.delay); + } else { + window.focus(); // allows keypress events if window isn't currently focused, fails for Safari + this.activeDraggable = draggable; + } + }, + + deactivate: function() { + this.activeDraggable = null; + }, + + updateDrag: function(event) { + if(!this.activeDraggable) return; + var pointer = [Event.pointerX(event), Event.pointerY(event)]; + // Mozilla-based browsers fire successive mousemove events with + // the same coordinates, prevent needless redrawing (moz bug?) + if(this._lastPointer && (this._lastPointer.inspect() == pointer.inspect())) return; + this._lastPointer = pointer; + + this.activeDraggable.updateDrag(event, pointer); + }, + + endDrag: function(event) { + if(this._timeout) { + clearTimeout(this._timeout); + this._timeout = null; + } + if(!this.activeDraggable) return; + this._lastPointer = null; + this.activeDraggable.endDrag(event); + this.activeDraggable = null; + }, + + keyPress: function(event) { + if(this.activeDraggable) + this.activeDraggable.keyPress(event); + }, + + addObserver: function(observer) { + this.observers.push(observer); + this._cacheObserverCallbacks(); + }, + + removeObserver: function(element) { // element instead of observer fixes mem leaks + this.observers = this.observers.reject( function(o) { return o.element==element }); + this._cacheObserverCallbacks(); + }, + + notify: function(eventName, draggable, event) { // 'onStart', 'onEnd', 'onDrag' + if(this[eventName+'Count'] > 0) + this.observers.each( function(o) { + if(o[eventName]) o[eventName](eventName, draggable, event); + }); + if(draggable.options[eventName]) draggable.options[eventName](draggable, event); + }, + + _cacheObserverCallbacks: function() { + ['onStart','onEnd','onDrag'].each( function(eventName) { + Draggables[eventName+'Count'] = Draggables.observers.select( + function(o) { return o[eventName]; } + ).length; + }); + } +}; + +/*--------------------------------------------------------------------------*/ + +var Draggable = Class.create({ + initialize: function(element) { + var defaults = { + handle: false, + reverteffect: function(element, top_offset, left_offset) { + var dur = Math.sqrt(Math.abs(top_offset^2)+Math.abs(left_offset^2))*0.02; + new Effect.Move(element, { x: -left_offset, y: -top_offset, duration: dur, + queue: {scope:'_draggable', position:'end'} + }); + }, + endeffect: function(element) { + var toOpacity = Object.isNumber(element._opacity) ? element._opacity : 1.0; + new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity, + queue: {scope:'_draggable', position:'end'}, + afterFinish: function(){ + Draggable._dragging[element] = false + } + }); + }, + zindex: 1000, + revert: false, + quiet: false, + scroll: false, + scrollSensitivity: 20, + scrollSpeed: 15, + snap: false, // false, or xy or [x,y] or function(x,y){ return [x,y] } + delay: 0 + }; + + if(!arguments[1] || Object.isUndefined(arguments[1].endeffect)) + Object.extend(defaults, { + starteffect: function(element) { + element._opacity = Element.getOpacity(element); + Draggable._dragging[element] = true; + new Effect.Opacity(element, {duration:0.2, from:element._opacity, to:0.7}); + } + }); + + var options = Object.extend(defaults, arguments[1] || { }); + + this.element = $(element); + + if(options.handle && Object.isString(options.handle)) + this.handle = this.element.down('.'+options.handle, 0); + + if(!this.handle) this.handle = $(options.handle); + if(!this.handle) this.handle = this.element; + + if(options.scroll && !options.scroll.scrollTo && !options.scroll.outerHTML) { + options.scroll = $(options.scroll); + this._isScrollChild = Element.childOf(this.element, options.scroll); + } + + Element.makePositioned(this.element); // fix IE + + this.options = options; + this.dragging = false; + + this.eventMouseDown = this.initDrag.bindAsEventListener(this); + Event.observe(this.handle, "mousedown", this.eventMouseDown); + + Draggables.register(this); + }, + + destroy: function() { + Event.stopObserving(this.handle, "mousedown", this.eventMouseDown); + Draggables.unregister(this); + }, + + currentDelta: function() { + return([ + parseInt(Element.getStyle(this.element,'left') || '0'), + parseInt(Element.getStyle(this.element,'top') || '0')]); + }, + + initDrag: function(event) { + if(!Object.isUndefined(Draggable._dragging[this.element]) && + Draggable._dragging[this.element]) return; + if(Event.isLeftClick(event)) { + // abort on form elements, fixes a Firefox issue + var src = Event.element(event); + if((tag_name = src.tagName.toUpperCase()) && ( + tag_name=='INPUT' || + tag_name=='SELECT' || + tag_name=='OPTION' || + tag_name=='BUTTON' || + tag_name=='TEXTAREA')) return; + + var pointer = [Event.pointerX(event), Event.pointerY(event)]; + var pos = Position.cumulativeOffset(this.element); + this.offset = [0,1].map( function(i) { return (pointer[i] - pos[i]) }); + + Draggables.activate(this); + Event.stop(event); + } + }, + + startDrag: function(event) { + this.dragging = true; + if(!this.delta) + this.delta = this.currentDelta(); + + if(this.options.zindex) { + this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0); + this.element.style.zIndex = this.options.zindex; + } + + if(this.options.ghosting) { + this._clone = this.element.cloneNode(true); + this._originallyAbsolute = (this.element.getStyle('position') == 'absolute'); + if (!this._originallyAbsolute) + Position.absolutize(this.element); + this.element.parentNode.insertBefore(this._clone, this.element); + } + + if(this.options.scroll) { + if (this.options.scroll == window) { + var where = this._getWindowScroll(this.options.scroll); + this.originalScrollLeft = where.left; + this.originalScrollTop = where.top; + } else { + this.originalScrollLeft = this.options.scroll.scrollLeft; + this.originalScrollTop = this.options.scroll.scrollTop; + } + } + + Draggables.notify('onStart', this, event); + + if(this.options.starteffect) this.options.starteffect(this.element); + }, + + updateDrag: function(event, pointer) { + if(!this.dragging) this.startDrag(event); + + if(!this.options.quiet){ + Position.prepare(); + Droppables.show(pointer, this.element); + } + + Draggables.notify('onDrag', this, event); + + this.draw(pointer); + if(this.options.change) this.options.change(this); + + if(this.options.scroll) { + this.stopScrolling(); + + var p; + if (this.options.scroll == window) { + with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; } + } else { + p = Position.page(this.options.scroll); + p[0] += this.options.scroll.scrollLeft + Position.deltaX; + p[1] += this.options.scroll.scrollTop + Position.deltaY; + p.push(p[0]+this.options.scroll.offsetWidth); + p.push(p[1]+this.options.scroll.offsetHeight); + } + var speed = [0,0]; + if(pointer[0] < (p[0]+this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[0]+this.options.scrollSensitivity); + if(pointer[1] < (p[1]+this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[1]+this.options.scrollSensitivity); + if(pointer[0] > (p[2]-this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[2]-this.options.scrollSensitivity); + if(pointer[1] > (p[3]-this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[3]-this.options.scrollSensitivity); + this.startScrolling(speed); + } + + // fix AppleWebKit rendering + if(Prototype.Browser.WebKit) window.scrollBy(0,0); + + Event.stop(event); + }, + + finishDrag: function(event, success) { + this.dragging = false; + + if(this.options.quiet){ + Position.prepare(); + var pointer = [Event.pointerX(event), Event.pointerY(event)]; + Droppables.show(pointer, this.element); + } + + if(this.options.ghosting) { + if (!this._originallyAbsolute) + Position.relativize(this.element); + delete this._originallyAbsolute; + Element.remove(this._clone); + this._clone = null; + } + + var dropped = false; + if(success) { + dropped = Droppables.fire(event, this.element); + if (!dropped) dropped = false; + } + if(dropped && this.options.onDropped) this.options.onDropped(this.element); + Draggables.notify('onEnd', this, event); + + var revert = this.options.revert; + if(revert && Object.isFunction(revert)) revert = revert(this.element); + + var d = this.currentDelta(); + if(revert && this.options.reverteffect) { + if (dropped == 0 || revert != 'failure') + this.options.reverteffect(this.element, + d[1]-this.delta[1], d[0]-this.delta[0]); + } else { + this.delta = d; + } + + if(this.options.zindex) + this.element.style.zIndex = this.originalZ; + + if(this.options.endeffect) + this.options.endeffect(this.element); + + Draggables.deactivate(this); + Droppables.reset(); + }, + + keyPress: function(event) { + if(event.keyCode!=Event.KEY_ESC) return; + this.finishDrag(event, false); + Event.stop(event); + }, + + endDrag: function(event) { + if(!this.dragging) return; + this.stopScrolling(); + this.finishDrag(event, true); + Event.stop(event); + }, + + draw: function(point) { + var pos = Position.cumulativeOffset(this.element); + if(this.options.ghosting) { + var r = Position.realOffset(this.element); + pos[0] += r[0] - Position.deltaX; pos[1] += r[1] - Position.deltaY; + } + + var d = this.currentDelta(); + pos[0] -= d[0]; pos[1] -= d[1]; + + if(this.options.scroll && (this.options.scroll != window && this._isScrollChild)) { + pos[0] -= this.options.scroll.scrollLeft-this.originalScrollLeft; + pos[1] -= this.options.scroll.scrollTop-this.originalScrollTop; + } + + var p = [0,1].map(function(i){ + return (point[i]-pos[i]-this.offset[i]) + }.bind(this)); + + if(this.options.snap) { + if(Object.isFunction(this.options.snap)) { + p = this.options.snap(p[0],p[1],this); + } else { + if(Object.isArray(this.options.snap)) { + p = p.map( function(v, i) { + return (v/this.options.snap[i]).round()*this.options.snap[i] }.bind(this)); + } else { + p = p.map( function(v) { + return (v/this.options.snap).round()*this.options.snap }.bind(this)); + } + }} + + var style = this.element.style; + if((!this.options.constraint) || (this.options.constraint=='horizontal')) + style.left = p[0] + "px"; + if((!this.options.constraint) || (this.options.constraint=='vertical')) + style.top = p[1] + "px"; + + if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering + }, + + stopScrolling: function() { + if(this.scrollInterval) { + clearInterval(this.scrollInterval); + this.scrollInterval = null; + Draggables._lastScrollPointer = null; + } + }, + + startScrolling: function(speed) { + if(!(speed[0] || speed[1])) return; + this.scrollSpeed = [speed[0]*this.options.scrollSpeed,speed[1]*this.options.scrollSpeed]; + this.lastScrolled = new Date(); + this.scrollInterval = setInterval(this.scroll.bind(this), 10); + }, + + scroll: function() { + var current = new Date(); + var delta = current - this.lastScrolled; + this.lastScrolled = current; + if(this.options.scroll == window) { + with (this._getWindowScroll(this.options.scroll)) { + if (this.scrollSpeed[0] || this.scrollSpeed[1]) { + var d = delta / 1000; + this.options.scroll.scrollTo( left + d*this.scrollSpeed[0], top + d*this.scrollSpeed[1] ); + } + } + } else { + this.options.scroll.scrollLeft += this.scrollSpeed[0] * delta / 1000; + this.options.scroll.scrollTop += this.scrollSpeed[1] * delta / 1000; + } + + Position.prepare(); + Droppables.show(Draggables._lastPointer, this.element); + Draggables.notify('onDrag', this); + if (this._isScrollChild) { + Draggables._lastScrollPointer = Draggables._lastScrollPointer || $A(Draggables._lastPointer); + Draggables._lastScrollPointer[0] += this.scrollSpeed[0] * delta / 1000; + Draggables._lastScrollPointer[1] += this.scrollSpeed[1] * delta / 1000; + if (Draggables._lastScrollPointer[0] < 0) + Draggables._lastScrollPointer[0] = 0; + if (Draggables._lastScrollPointer[1] < 0) + Draggables._lastScrollPointer[1] = 0; + this.draw(Draggables._lastScrollPointer); + } + + if(this.options.change) this.options.change(this); + }, + + _getWindowScroll: function(w) { + var T, L, W, H; + with (w.document) { + if (w.document.documentElement && documentElement.scrollTop) { + T = documentElement.scrollTop; + L = documentElement.scrollLeft; + } else if (w.document.body) { + T = body.scrollTop; + L = body.scrollLeft; + } + if (w.innerWidth) { + W = w.innerWidth; + H = w.innerHeight; + } else if (w.document.documentElement && documentElement.clientWidth) { + W = documentElement.clientWidth; + H = documentElement.clientHeight; + } else { + W = body.offsetWidth; + H = body.offsetHeight; + } + } + return { top: T, left: L, width: W, height: H }; + } +}); + +Draggable._dragging = { }; + +/*--------------------------------------------------------------------------*/ + +var SortableObserver = Class.create({ + initialize: function(element, observer) { + this.element = $(element); + this.observer = observer; + this.lastValue = Sortable.serialize(this.element); + }, + + onStart: function() { + this.lastValue = Sortable.serialize(this.element); + }, + + onEnd: function() { + Sortable.unmark(); + if(this.lastValue != Sortable.serialize(this.element)) + this.observer(this.element) + } +}); + +var Sortable = { + SERIALIZE_RULE: /^[^_\-](?:[A-Za-z0-9\-\_]*)[_](.*)$/, + + sortables: { }, + + _findRootElement: function(element) { + while (element.tagName.toUpperCase() != "BODY") { + if(element.id && Sortable.sortables[element.id]) return element; + element = element.parentNode; + } + }, + + options: function(element) { + element = Sortable._findRootElement($(element)); + if(!element) return; + return Sortable.sortables[element.id]; + }, + + destroy: function(element){ + element = $(element); + var s = Sortable.sortables[element.id]; + + if(s) { + Draggables.removeObserver(s.element); + s.droppables.each(function(d){ Droppables.remove(d) }); + s.draggables.invoke('destroy'); + + delete Sortable.sortables[s.element.id]; + } + }, + + create: function(element) { + element = $(element); + var options = Object.extend({ + element: element, + tag: 'li', // assumes li children, override with tag: 'tagname' + dropOnEmpty: false, + tree: false, + treeTag: 'ul', + overlap: 'vertical', // one of 'vertical', 'horizontal' + constraint: 'vertical', // one of 'vertical', 'horizontal', false + containment: element, // also takes array of elements (or id's); or false + handle: false, // or a CSS class + only: false, + delay: 0, + hoverclass: null, + ghosting: false, + quiet: false, + scroll: false, + scrollSensitivity: 20, + scrollSpeed: 15, + format: this.SERIALIZE_RULE, + + // these take arrays of elements or ids and can be + // used for better initialization performance + elements: false, + handles: false, + + onChange: Prototype.emptyFunction, + onUpdate: Prototype.emptyFunction + }, arguments[1] || { }); + + // clear any old sortable with same element + this.destroy(element); + + // build options for the draggables + var options_for_draggable = { + revert: true, + quiet: options.quiet, + scroll: options.scroll, + scrollSpeed: options.scrollSpeed, + scrollSensitivity: options.scrollSensitivity, + delay: options.delay, + ghosting: options.ghosting, + constraint: options.constraint, + handle: options.handle }; + + if(options.starteffect) + options_for_draggable.starteffect = options.starteffect; + + if(options.reverteffect) + options_for_draggable.reverteffect = options.reverteffect; + else + if(options.ghosting) options_for_draggable.reverteffect = function(element) { + element.style.top = 0; + element.style.left = 0; + }; + + if(options.endeffect) + options_for_draggable.endeffect = options.endeffect; + + if(options.zindex) + options_for_draggable.zindex = options.zindex; + + // build options for the droppables + var options_for_droppable = { + overlap: options.overlap, + containment: options.containment, + tree: options.tree, + hoverclass: options.hoverclass, + onHover: Sortable.onHover + }; + + var options_for_tree = { + onHover: Sortable.onEmptyHover, + overlap: options.overlap, + containment: options.containment, + hoverclass: options.hoverclass + }; + + // fix for gecko engine + Element.cleanWhitespace(element); + + options.draggables = []; + options.droppables = []; + + // drop on empty handling + if(options.dropOnEmpty || options.tree) { + Droppables.add(element, options_for_tree); + options.droppables.push(element); + } + + (options.elements || this.findElements(element, options) || []).each( function(e,i) { + var handle = options.handles ? $(options.handles[i]) : + (options.handle ? $(e).select('.' + options.handle)[0] : e); + options.draggables.push( + new Draggable(e, Object.extend(options_for_draggable, { handle: handle }))); + Droppables.add(e, options_for_droppable); + if(options.tree) e.treeNode = element; + options.droppables.push(e); + }); + + if(options.tree) { + (Sortable.findTreeElements(element, options) || []).each( function(e) { + Droppables.add(e, options_for_tree); + e.treeNode = element; + options.droppables.push(e); + }); + } + + // keep reference + this.sortables[element.id] = options; + + // for onupdate + Draggables.addObserver(new SortableObserver(element, options.onUpdate)); + + }, + + // return all suitable-for-sortable elements in a guaranteed order + findElements: function(element, options) { + return Element.findChildren( + element, options.only, options.tree ? true : false, options.tag); + }, + + findTreeElements: function(element, options) { + return Element.findChildren( + element, options.only, options.tree ? true : false, options.treeTag); + }, + + onHover: function(element, dropon, overlap) { + if(Element.isParent(dropon, element)) return; + + if(overlap > .33 && overlap < .66 && Sortable.options(dropon).tree) { + return; + } else if(overlap>0.5) { + Sortable.mark(dropon, 'before'); + if(dropon.previousSibling != element) { + var oldParentNode = element.parentNode; + element.style.visibility = "hidden"; // fix gecko rendering + dropon.parentNode.insertBefore(element, dropon); + if(dropon.parentNode!=oldParentNode) + Sortable.options(oldParentNode).onChange(element); + Sortable.options(dropon.parentNode).onChange(element); + } + } else { + Sortable.mark(dropon, 'after'); + var nextElement = dropon.nextSibling || null; + if(nextElement != element) { + var oldParentNode = element.parentNode; + element.style.visibility = "hidden"; // fix gecko rendering + dropon.parentNode.insertBefore(element, nextElement); + if(dropon.parentNode!=oldParentNode) + Sortable.options(oldParentNode).onChange(element); + Sortable.options(dropon.parentNode).onChange(element); + } + } + }, + + onEmptyHover: function(element, dropon, overlap) { + var oldParentNode = element.parentNode; + var droponOptions = Sortable.options(dropon); + + if(!Element.isParent(dropon, element)) { + var index; + + var children = Sortable.findElements(dropon, {tag: droponOptions.tag, only: droponOptions.only}); + var child = null; + + if(children) { + var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap); + + for (index = 0; index < children.length; index += 1) { + if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) { + offset -= Element.offsetSize (children[index], droponOptions.overlap); + } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) { + child = index + 1 < children.length ? children[index + 1] : null; + break; + } else { + child = children[index]; + break; + } + } + } + + dropon.insertBefore(element, child); + + Sortable.options(oldParentNode).onChange(element); + droponOptions.onChange(element); + } + }, + + unmark: function() { + if(Sortable._marker) Sortable._marker.hide(); + }, + + mark: function(dropon, position) { + // mark on ghosting only + var sortable = Sortable.options(dropon.parentNode); + if(sortable && !sortable.ghosting) return; + + if(!Sortable._marker) { + Sortable._marker = + ($('dropmarker') || Element.extend(document.createElement('DIV'))). + hide().addClassName('dropmarker').setStyle({position:'absolute'}); + document.getElementsByTagName("body").item(0).appendChild(Sortable._marker); + } + var offsets = Position.cumulativeOffset(dropon); + Sortable._marker.setStyle({left: offsets[0]+'px', top: offsets[1] + 'px'}); + + if(position=='after') + if(sortable.overlap == 'horizontal') + Sortable._marker.setStyle({left: (offsets[0]+dropon.clientWidth) + 'px'}); + else + Sortable._marker.setStyle({top: (offsets[1]+dropon.clientHeight) + 'px'}); + + Sortable._marker.show(); + }, + + _tree: function(element, options, parent) { + var children = Sortable.findElements(element, options) || []; + + for (var i = 0; i < children.length; ++i) { + var match = children[i].id.match(options.format); + + if (!match) continue; + + var child = { + id: encodeURIComponent(match ? match[1] : null), + element: element, + parent: parent, + children: [], + position: parent.children.length, + container: $(children[i]).down(options.treeTag) + }; + + /* Get the element containing the children and recurse over it */ + if (child.container) + this._tree(child.container, options, child); + + parent.children.push (child); + } + + return parent; + }, + + tree: function(element) { + element = $(element); + var sortableOptions = this.options(element); + var options = Object.extend({ + tag: sortableOptions.tag, + treeTag: sortableOptions.treeTag, + only: sortableOptions.only, + name: element.id, + format: sortableOptions.format + }, arguments[1] || { }); + + var root = { + id: null, + parent: null, + children: [], + container: element, + position: 0 + }; + + return Sortable._tree(element, options, root); + }, + + /* Construct a [i] index for a particular node */ + _constructIndex: function(node) { + var index = ''; + do { + if (node.id) index = '[' + node.position + ']' + index; + } while ((node = node.parent) != null); + return index; + }, + + sequence: function(element) { + element = $(element); + var options = Object.extend(this.options(element), arguments[1] || { }); + + return $(this.findElements(element, options) || []).map( function(item) { + return item.id.match(options.format) ? item.id.match(options.format)[1] : ''; + }); + }, + + setSequence: function(element, new_sequence) { + element = $(element); + var options = Object.extend(this.options(element), arguments[2] || { }); + + var nodeMap = { }; + this.findElements(element, options).each( function(n) { + if (n.id.match(options.format)) + nodeMap[n.id.match(options.format)[1]] = [n, n.parentNode]; + n.parentNode.removeChild(n); + }); + + new_sequence.each(function(ident) { + var n = nodeMap[ident]; + if (n) { + n[1].appendChild(n[0]); + delete nodeMap[ident]; + } + }); + }, + + serialize: function(element) { + element = $(element); + var options = Object.extend(Sortable.options(element), arguments[1] || { }); + var name = encodeURIComponent( + (arguments[1] && arguments[1].name) ? arguments[1].name : element.id); + + if (options.tree) { + return Sortable.tree(element, arguments[1]).children.map( function (item) { + return [name + Sortable._constructIndex(item) + "[id]=" + + encodeURIComponent(item.id)].concat(item.children.map(arguments.callee)); + }).flatten().join('&'); + } else { + return Sortable.sequence(element, arguments[1]).map( function(item) { + return name + "[]=" + encodeURIComponent(item); + }).join('&'); + } + } +}; + +// Returns true if child is contained within element +Element.isParent = function(child, element) { + if (!child.parentNode || child == element) return false; + if (child.parentNode == element) return true; + return Element.isParent(child.parentNode, element); +}; + +Element.findChildren = function(element, only, recursive, tagName) { + if(!element.hasChildNodes()) return null; + tagName = tagName.toUpperCase(); + if(only) only = [only].flatten(); + var elements = []; + $A(element.childNodes).each( function(e) { + if(e.tagName && e.tagName.toUpperCase()==tagName && + (!only || (Element.classNames(e).detect(function(v) { return only.include(v) })))) + elements.push(e); + if(recursive) { + var grandchildren = Element.findChildren(e, only, recursive, tagName); + if(grandchildren) elements.push(grandchildren); + } + }); + + return (elements.length>0 ? elements.flatten() : []); +}; + +Element.offsetSize = function (element, type) { + return element['offset' + ((type=='vertical' || type=='height') ? 'Height' : 'Width')]; +}; \ No newline at end of file diff --git a/public/javascripts/effects.js b/public/javascripts/effects.js new file mode 100644 index 0000000..5a639d2 --- /dev/null +++ b/public/javascripts/effects.js @@ -0,0 +1,1128 @@ +// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) +// Contributors: +// Justin Palmer (http://encytemedia.com/) +// Mark Pilgrim (http://diveintomark.org/) +// Martin Bialasinki +// +// script.aculo.us is freely distributable under the terms of an MIT-style license. +// For details, see the script.aculo.us web site: http://script.aculo.us/ + +// converts rgb() and #xxx to #xxxxxx format, +// returns self (or first argument) if not convertable +String.prototype.parseColor = function() { + var color = '#'; + if (this.slice(0,4) == 'rgb(') { + var cols = this.slice(4,this.length-1).split(','); + var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3); + } else { + if (this.slice(0,1) == '#') { + if (this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase(); + if (this.length==7) color = this.toLowerCase(); + } + } + return (color.length==7 ? color : (arguments[0] || this)); +}; + +/*--------------------------------------------------------------------------*/ + +Element.collectTextNodes = function(element) { + return $A($(element).childNodes).collect( function(node) { + return (node.nodeType==3 ? node.nodeValue : + (node.hasChildNodes() ? Element.collectTextNodes(node) : '')); + }).flatten().join(''); +}; + +Element.collectTextNodesIgnoreClass = function(element, className) { + return $A($(element).childNodes).collect( function(node) { + return (node.nodeType==3 ? node.nodeValue : + ((node.hasChildNodes() && !Element.hasClassName(node,className)) ? + Element.collectTextNodesIgnoreClass(node, className) : '')); + }).flatten().join(''); +}; + +Element.setContentZoom = function(element, percent) { + element = $(element); + element.setStyle({fontSize: (percent/100) + 'em'}); + if (Prototype.Browser.WebKit) window.scrollBy(0,0); + return element; +}; + +Element.getInlineOpacity = function(element){ + return $(element).style.opacity || ''; +}; + +Element.forceRerendering = function(element) { + try { + element = $(element); + var n = document.createTextNode(' '); + element.appendChild(n); + element.removeChild(n); + } catch(e) { } +}; + +/*--------------------------------------------------------------------------*/ + +var Effect = { + _elementDoesNotExistError: { + name: 'ElementDoesNotExistError', + message: 'The specified DOM element does not exist, but is required for this effect to operate' + }, + Transitions: { + linear: Prototype.K, + sinoidal: function(pos) { + return (-Math.cos(pos*Math.PI)/2) + .5; + }, + reverse: function(pos) { + return 1-pos; + }, + flicker: function(pos) { + var pos = ((-Math.cos(pos*Math.PI)/4) + .75) + Math.random()/4; + return pos > 1 ? 1 : pos; + }, + wobble: function(pos) { + return (-Math.cos(pos*Math.PI*(9*pos))/2) + .5; + }, + pulse: function(pos, pulses) { + return (-Math.cos((pos*((pulses||5)-.5)*2)*Math.PI)/2) + .5; + }, + spring: function(pos) { + return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6)); + }, + none: function(pos) { + return 0; + }, + full: function(pos) { + return 1; + } + }, + DefaultOptions: { + duration: 1.0, // seconds + fps: 100, // 100= assume 66fps max. + sync: false, // true for combining + from: 0.0, + to: 1.0, + delay: 0.0, + queue: 'parallel' + }, + tagifyText: function(element) { + var tagifyStyle = 'position:relative'; + if (Prototype.Browser.IE) tagifyStyle += ';zoom:1'; + + element = $(element); + $A(element.childNodes).each( function(child) { + if (child.nodeType==3) { + child.nodeValue.toArray().each( function(character) { + element.insertBefore( + new Element('span', {style: tagifyStyle}).update( + character == ' ' ? String.fromCharCode(160) : character), + child); + }); + Element.remove(child); + } + }); + }, + multiple: function(element, effect) { + var elements; + if (((typeof element == 'object') || + Object.isFunction(element)) && + (element.length)) + elements = element; + else + elements = $(element).childNodes; + + var options = Object.extend({ + speed: 0.1, + delay: 0.0 + }, arguments[2] || { }); + var masterDelay = options.delay; + + $A(elements).each( function(element, index) { + new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay })); + }); + }, + PAIRS: { + 'slide': ['SlideDown','SlideUp'], + 'blind': ['BlindDown','BlindUp'], + 'appear': ['Appear','Fade'] + }, + toggle: function(element, effect) { + element = $(element); + effect = (effect || 'appear').toLowerCase(); + var options = Object.extend({ + queue: { position:'end', scope:(element.id || 'global'), limit: 1 } + }, arguments[2] || { }); + Effect[element.visible() ? + Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options); + } +}; + +Effect.DefaultOptions.transition = Effect.Transitions.sinoidal; + +/* ------------- core effects ------------- */ + +Effect.ScopedQueue = Class.create(Enumerable, { + initialize: function() { + this.effects = []; + this.interval = null; + }, + _each: function(iterator) { + this.effects._each(iterator); + }, + add: function(effect) { + var timestamp = new Date().getTime(); + + var position = Object.isString(effect.options.queue) ? + effect.options.queue : effect.options.queue.position; + + switch(position) { + case 'front': + // move unstarted effects after this effect + this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) { + e.startOn += effect.finishOn; + e.finishOn += effect.finishOn; + }); + break; + case 'with-last': + timestamp = this.effects.pluck('startOn').max() || timestamp; + break; + case 'end': + // start effect after last queued effect has finished + timestamp = this.effects.pluck('finishOn').max() || timestamp; + break; + } + + effect.startOn += timestamp; + effect.finishOn += timestamp; + + if (!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit)) + this.effects.push(effect); + + if (!this.interval) + this.interval = setInterval(this.loop.bind(this), 15); + }, + remove: function(effect) { + this.effects = this.effects.reject(function(e) { return e==effect }); + if (this.effects.length == 0) { + clearInterval(this.interval); + this.interval = null; + } + }, + loop: function() { + var timePos = new Date().getTime(); + for(var i=0, len=this.effects.length;i= this.startOn) { + if (timePos >= this.finishOn) { + this.render(1.0); + this.cancel(); + this.event('beforeFinish'); + if (this.finish) this.finish(); + this.event('afterFinish'); + return; + } + var pos = (timePos - this.startOn) / this.totalTime, + frame = (pos * this.totalFrames).round(); + if (frame > this.currentFrame) { + this.render(pos); + this.currentFrame = frame; + } + } + }, + cancel: function() { + if (!this.options.sync) + Effect.Queues.get(Object.isString(this.options.queue) ? + 'global' : this.options.queue.scope).remove(this); + this.state = 'finished'; + }, + event: function(eventName) { + if (this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this); + if (this.options[eventName]) this.options[eventName](this); + }, + inspect: function() { + var data = $H(); + for(property in this) + if (!Object.isFunction(this[property])) data.set(property, this[property]); + return '#'; + } +}); + +Effect.Parallel = Class.create(Effect.Base, { + initialize: function(effects) { + this.effects = effects || []; + this.start(arguments[1]); + }, + update: function(position) { + this.effects.invoke('render', position); + }, + finish: function(position) { + this.effects.each( function(effect) { + effect.render(1.0); + effect.cancel(); + effect.event('beforeFinish'); + if (effect.finish) effect.finish(position); + effect.event('afterFinish'); + }); + } +}); + +Effect.Tween = Class.create(Effect.Base, { + initialize: function(object, from, to) { + object = Object.isString(object) ? $(object) : object; + var args = $A(arguments), method = args.last(), + options = args.length == 5 ? args[3] : null; + this.method = Object.isFunction(method) ? method.bind(object) : + Object.isFunction(object[method]) ? object[method].bind(object) : + function(value) { object[method] = value }; + this.start(Object.extend({ from: from, to: to }, options || { })); + }, + update: function(position) { + this.method(position); + } +}); + +Effect.Event = Class.create(Effect.Base, { + initialize: function() { + this.start(Object.extend({ duration: 0 }, arguments[0] || { })); + }, + update: Prototype.emptyFunction +}); + +Effect.Opacity = Class.create(Effect.Base, { + initialize: function(element) { + this.element = $(element); + if (!this.element) throw(Effect._elementDoesNotExistError); + // make this work on IE on elements without 'layout' + if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout)) + this.element.setStyle({zoom: 1}); + var options = Object.extend({ + from: this.element.getOpacity() || 0.0, + to: 1.0 + }, arguments[1] || { }); + this.start(options); + }, + update: function(position) { + this.element.setOpacity(position); + } +}); + +Effect.Move = Class.create(Effect.Base, { + initialize: function(element) { + this.element = $(element); + if (!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ + x: 0, + y: 0, + mode: 'relative' + }, arguments[1] || { }); + this.start(options); + }, + setup: function() { + this.element.makePositioned(); + this.originalLeft = parseFloat(this.element.getStyle('left') || '0'); + this.originalTop = parseFloat(this.element.getStyle('top') || '0'); + if (this.options.mode == 'absolute') { + this.options.x = this.options.x - this.originalLeft; + this.options.y = this.options.y - this.originalTop; + } + }, + update: function(position) { + this.element.setStyle({ + left: (this.options.x * position + this.originalLeft).round() + 'px', + top: (this.options.y * position + this.originalTop).round() + 'px' + }); + } +}); + +// for backwards compatibility +Effect.MoveBy = function(element, toTop, toLeft) { + return new Effect.Move(element, + Object.extend({ x: toLeft, y: toTop }, arguments[3] || { })); +}; + +Effect.Scale = Class.create(Effect.Base, { + initialize: function(element, percent) { + this.element = $(element); + if (!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ + scaleX: true, + scaleY: true, + scaleContent: true, + scaleFromCenter: false, + scaleMode: 'box', // 'box' or 'contents' or { } with provided values + scaleFrom: 100.0, + scaleTo: percent + }, arguments[2] || { }); + this.start(options); + }, + setup: function() { + this.restoreAfterFinish = this.options.restoreAfterFinish || false; + this.elementPositioning = this.element.getStyle('position'); + + this.originalStyle = { }; + ['top','left','width','height','fontSize'].each( function(k) { + this.originalStyle[k] = this.element.style[k]; + }.bind(this)); + + this.originalTop = this.element.offsetTop; + this.originalLeft = this.element.offsetLeft; + + var fontSize = this.element.getStyle('font-size') || '100%'; + ['em','px','%','pt'].each( function(fontSizeType) { + if (fontSize.indexOf(fontSizeType)>0) { + this.fontSize = parseFloat(fontSize); + this.fontSizeType = fontSizeType; + } + }.bind(this)); + + this.factor = (this.options.scaleTo - this.options.scaleFrom)/100; + + this.dims = null; + if (this.options.scaleMode=='box') + this.dims = [this.element.offsetHeight, this.element.offsetWidth]; + if (/^content/.test(this.options.scaleMode)) + this.dims = [this.element.scrollHeight, this.element.scrollWidth]; + if (!this.dims) + this.dims = [this.options.scaleMode.originalHeight, + this.options.scaleMode.originalWidth]; + }, + update: function(position) { + var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position); + if (this.options.scaleContent && this.fontSize) + this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType }); + this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale); + }, + finish: function(position) { + if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle); + }, + setDimensions: function(height, width) { + var d = { }; + if (this.options.scaleX) d.width = width.round() + 'px'; + if (this.options.scaleY) d.height = height.round() + 'px'; + if (this.options.scaleFromCenter) { + var topd = (height - this.dims[0])/2; + var leftd = (width - this.dims[1])/2; + if (this.elementPositioning == 'absolute') { + if (this.options.scaleY) d.top = this.originalTop-topd + 'px'; + if (this.options.scaleX) d.left = this.originalLeft-leftd + 'px'; + } else { + if (this.options.scaleY) d.top = -topd + 'px'; + if (this.options.scaleX) d.left = -leftd + 'px'; + } + } + this.element.setStyle(d); + } +}); + +Effect.Highlight = Class.create(Effect.Base, { + initialize: function(element) { + this.element = $(element); + if (!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || { }); + this.start(options); + }, + setup: function() { + // Prevent executing on elements not in the layout flow + if (this.element.getStyle('display')=='none') { this.cancel(); return; } + // Disable background image during the effect + this.oldStyle = { }; + if (!this.options.keepBackgroundImage) { + this.oldStyle.backgroundImage = this.element.getStyle('background-image'); + this.element.setStyle({backgroundImage: 'none'}); + } + if (!this.options.endcolor) + this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff'); + if (!this.options.restorecolor) + this.options.restorecolor = this.element.getStyle('background-color'); + // init color calculations + this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this)); + this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this)); + }, + update: function(position) { + this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){ + return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart()); }.bind(this)) }); + }, + finish: function() { + this.element.setStyle(Object.extend(this.oldStyle, { + backgroundColor: this.options.restorecolor + })); + } +}); + +Effect.ScrollTo = function(element) { + var options = arguments[1] || { }, + scrollOffsets = document.viewport.getScrollOffsets(), + elementOffsets = $(element).cumulativeOffset(); + + if (options.offset) elementOffsets[1] += options.offset; + + return new Effect.Tween(null, + scrollOffsets.top, + elementOffsets[1], + options, + function(p){ scrollTo(scrollOffsets.left, p.round()); } + ); +}; + +/* ------------- combination effects ------------- */ + +Effect.Fade = function(element) { + element = $(element); + var oldOpacity = element.getInlineOpacity(); + var options = Object.extend({ + from: element.getOpacity() || 1.0, + to: 0.0, + afterFinishInternal: function(effect) { + if (effect.options.to!=0) return; + effect.element.hide().setStyle({opacity: oldOpacity}); + } + }, arguments[1] || { }); + return new Effect.Opacity(element,options); +}; + +Effect.Appear = function(element) { + element = $(element); + var options = Object.extend({ + from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0), + to: 1.0, + // force Safari to render floated elements properly + afterFinishInternal: function(effect) { + effect.element.forceRerendering(); + }, + beforeSetup: function(effect) { + effect.element.setOpacity(effect.options.from).show(); + }}, arguments[1] || { }); + return new Effect.Opacity(element,options); +}; + +Effect.Puff = function(element) { + element = $(element); + var oldStyle = { + opacity: element.getInlineOpacity(), + position: element.getStyle('position'), + top: element.style.top, + left: element.style.left, + width: element.style.width, + height: element.style.height + }; + return new Effect.Parallel( + [ new Effect.Scale(element, 200, + { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }), + new Effect.Opacity(element, { sync: true, to: 0.0 } ) ], + Object.extend({ duration: 1.0, + beforeSetupInternal: function(effect) { + Position.absolutize(effect.effects[0].element); + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.hide().setStyle(oldStyle); } + }, arguments[1] || { }) + ); +}; + +Effect.BlindUp = function(element) { + element = $(element); + element.makeClipping(); + return new Effect.Scale(element, 0, + Object.extend({ scaleContent: false, + scaleX: false, + restoreAfterFinish: true, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping(); + } + }, arguments[1] || { }) + ); +}; + +Effect.BlindDown = function(element) { + element = $(element); + var elementDimensions = element.getDimensions(); + return new Effect.Scale(element, 100, Object.extend({ + scaleContent: false, + scaleX: false, + scaleFrom: 0, + scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width}, + restoreAfterFinish: true, + afterSetup: function(effect) { + effect.element.makeClipping().setStyle({height: '0px'}).show(); + }, + afterFinishInternal: function(effect) { + effect.element.undoClipping(); + } + }, arguments[1] || { })); +}; + +Effect.SwitchOff = function(element) { + element = $(element); + var oldOpacity = element.getInlineOpacity(); + return new Effect.Appear(element, Object.extend({ + duration: 0.4, + from: 0, + transition: Effect.Transitions.flicker, + afterFinishInternal: function(effect) { + new Effect.Scale(effect.element, 1, { + duration: 0.3, scaleFromCenter: true, + scaleX: false, scaleContent: false, restoreAfterFinish: true, + beforeSetup: function(effect) { + effect.element.makePositioned().makeClipping(); + }, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity}); + } + }); + } + }, arguments[1] || { })); +}; + +Effect.DropOut = function(element) { + element = $(element); + var oldStyle = { + top: element.getStyle('top'), + left: element.getStyle('left'), + opacity: element.getInlineOpacity() }; + return new Effect.Parallel( + [ new Effect.Move(element, {x: 0, y: 100, sync: true }), + new Effect.Opacity(element, { sync: true, to: 0.0 }) ], + Object.extend( + { duration: 0.5, + beforeSetup: function(effect) { + effect.effects[0].element.makePositioned(); + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle); + } + }, arguments[1] || { })); +}; + +Effect.Shake = function(element) { + element = $(element); + var options = Object.extend({ + distance: 20, + duration: 0.5 + }, arguments[1] || {}); + var distance = parseFloat(options.distance); + var split = parseFloat(options.duration) / 10.0; + var oldStyle = { + top: element.getStyle('top'), + left: element.getStyle('left') }; + return new Effect.Move(element, + { x: distance, y: 0, duration: split, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: -distance, y: 0, duration: split, afterFinishInternal: function(effect) { + effect.element.undoPositioned().setStyle(oldStyle); + }}); }}); }}); }}); }}); }}); +}; + +Effect.SlideDown = function(element) { + element = $(element).cleanWhitespace(); + // SlideDown need to have the content of the element wrapped in a container element with fixed height! + var oldInnerBottom = element.down().getStyle('bottom'); + var elementDimensions = element.getDimensions(); + return new Effect.Scale(element, 100, Object.extend({ + scaleContent: false, + scaleX: false, + scaleFrom: window.opera ? 0 : 1, + scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width}, + restoreAfterFinish: true, + afterSetup: function(effect) { + effect.element.makePositioned(); + effect.element.down().makePositioned(); + if (window.opera) effect.element.setStyle({top: ''}); + effect.element.makeClipping().setStyle({height: '0px'}).show(); + }, + afterUpdateInternal: function(effect) { + effect.element.down().setStyle({bottom: + (effect.dims[0] - effect.element.clientHeight) + 'px' }); + }, + afterFinishInternal: function(effect) { + effect.element.undoClipping().undoPositioned(); + effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); } + }, arguments[1] || { }) + ); +}; + +Effect.SlideUp = function(element) { + element = $(element).cleanWhitespace(); + var oldInnerBottom = element.down().getStyle('bottom'); + var elementDimensions = element.getDimensions(); + return new Effect.Scale(element, window.opera ? 0 : 1, + Object.extend({ scaleContent: false, + scaleX: false, + scaleMode: 'box', + scaleFrom: 100, + scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width}, + restoreAfterFinish: true, + afterSetup: function(effect) { + effect.element.makePositioned(); + effect.element.down().makePositioned(); + if (window.opera) effect.element.setStyle({top: ''}); + effect.element.makeClipping().show(); + }, + afterUpdateInternal: function(effect) { + effect.element.down().setStyle({bottom: + (effect.dims[0] - effect.element.clientHeight) + 'px' }); + }, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping().undoPositioned(); + effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); + } + }, arguments[1] || { }) + ); +}; + +// Bug in opera makes the TD containing this element expand for a instance after finish +Effect.Squish = function(element) { + return new Effect.Scale(element, window.opera ? 1 : 0, { + restoreAfterFinish: true, + beforeSetup: function(effect) { + effect.element.makeClipping(); + }, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping(); + } + }); +}; + +Effect.Grow = function(element) { + element = $(element); + var options = Object.extend({ + direction: 'center', + moveTransition: Effect.Transitions.sinoidal, + scaleTransition: Effect.Transitions.sinoidal, + opacityTransition: Effect.Transitions.full + }, arguments[1] || { }); + var oldStyle = { + top: element.style.top, + left: element.style.left, + height: element.style.height, + width: element.style.width, + opacity: element.getInlineOpacity() }; + + var dims = element.getDimensions(); + var initialMoveX, initialMoveY; + var moveX, moveY; + + switch (options.direction) { + case 'top-left': + initialMoveX = initialMoveY = moveX = moveY = 0; + break; + case 'top-right': + initialMoveX = dims.width; + initialMoveY = moveY = 0; + moveX = -dims.width; + break; + case 'bottom-left': + initialMoveX = moveX = 0; + initialMoveY = dims.height; + moveY = -dims.height; + break; + case 'bottom-right': + initialMoveX = dims.width; + initialMoveY = dims.height; + moveX = -dims.width; + moveY = -dims.height; + break; + case 'center': + initialMoveX = dims.width / 2; + initialMoveY = dims.height / 2; + moveX = -dims.width / 2; + moveY = -dims.height / 2; + break; + } + + return new Effect.Move(element, { + x: initialMoveX, + y: initialMoveY, + duration: 0.01, + beforeSetup: function(effect) { + effect.element.hide().makeClipping().makePositioned(); + }, + afterFinishInternal: function(effect) { + new Effect.Parallel( + [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }), + new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }), + new Effect.Scale(effect.element, 100, { + scaleMode: { originalHeight: dims.height, originalWidth: dims.width }, + sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true}) + ], Object.extend({ + beforeSetup: function(effect) { + effect.effects[0].element.setStyle({height: '0px'}).show(); + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle); + } + }, options) + ); + } + }); +}; + +Effect.Shrink = function(element) { + element = $(element); + var options = Object.extend({ + direction: 'center', + moveTransition: Effect.Transitions.sinoidal, + scaleTransition: Effect.Transitions.sinoidal, + opacityTransition: Effect.Transitions.none + }, arguments[1] || { }); + var oldStyle = { + top: element.style.top, + left: element.style.left, + height: element.style.height, + width: element.style.width, + opacity: element.getInlineOpacity() }; + + var dims = element.getDimensions(); + var moveX, moveY; + + switch (options.direction) { + case 'top-left': + moveX = moveY = 0; + break; + case 'top-right': + moveX = dims.width; + moveY = 0; + break; + case 'bottom-left': + moveX = 0; + moveY = dims.height; + break; + case 'bottom-right': + moveX = dims.width; + moveY = dims.height; + break; + case 'center': + moveX = dims.width / 2; + moveY = dims.height / 2; + break; + } + + return new Effect.Parallel( + [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }), + new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}), + new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }) + ], Object.extend({ + beforeStartInternal: function(effect) { + effect.effects[0].element.makePositioned().makeClipping(); + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); } + }, options) + ); +}; + +Effect.Pulsate = function(element) { + element = $(element); + var options = arguments[1] || { }, + oldOpacity = element.getInlineOpacity(), + transition = options.transition || Effect.Transitions.linear, + reverser = function(pos){ + return 1 - transition((-Math.cos((pos*(options.pulses||5)*2)*Math.PI)/2) + .5); + }; + + return new Effect.Opacity(element, + Object.extend(Object.extend({ duration: 2.0, from: 0, + afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); } + }, options), {transition: reverser})); +}; + +Effect.Fold = function(element) { + element = $(element); + var oldStyle = { + top: element.style.top, + left: element.style.left, + width: element.style.width, + height: element.style.height }; + element.makeClipping(); + return new Effect.Scale(element, 5, Object.extend({ + scaleContent: false, + scaleX: false, + afterFinishInternal: function(effect) { + new Effect.Scale(element, 1, { + scaleContent: false, + scaleY: false, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping().setStyle(oldStyle); + } }); + }}, arguments[1] || { })); +}; + +Effect.Morph = Class.create(Effect.Base, { + initialize: function(element) { + this.element = $(element); + if (!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ + style: { } + }, arguments[1] || { }); + + if (!Object.isString(options.style)) this.style = $H(options.style); + else { + if (options.style.include(':')) + this.style = options.style.parseStyle(); + else { + this.element.addClassName(options.style); + this.style = $H(this.element.getStyles()); + this.element.removeClassName(options.style); + var css = this.element.getStyles(); + this.style = this.style.reject(function(style) { + return style.value == css[style.key]; + }); + options.afterFinishInternal = function(effect) { + effect.element.addClassName(effect.options.style); + effect.transforms.each(function(transform) { + effect.element.style[transform.style] = ''; + }); + }; + } + } + this.start(options); + }, + + setup: function(){ + function parseColor(color){ + if (!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff'; + color = color.parseColor(); + return $R(0,2).map(function(i){ + return parseInt( color.slice(i*2+1,i*2+3), 16 ); + }); + } + this.transforms = this.style.map(function(pair){ + var property = pair[0], value = pair[1], unit = null; + + if (value.parseColor('#zzzzzz') != '#zzzzzz') { + value = value.parseColor(); + unit = 'color'; + } else if (property == 'opacity') { + value = parseFloat(value); + if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout)) + this.element.setStyle({zoom: 1}); + } else if (Element.CSS_LENGTH.test(value)) { + var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/); + value = parseFloat(components[1]); + unit = (components.length == 3) ? components[2] : null; + } + + var originalValue = this.element.getStyle(property); + return { + style: property.camelize(), + originalValue: unit=='color' ? parseColor(originalValue) : parseFloat(originalValue || 0), + targetValue: unit=='color' ? parseColor(value) : value, + unit: unit + }; + }.bind(this)).reject(function(transform){ + return ( + (transform.originalValue == transform.targetValue) || + ( + transform.unit != 'color' && + (isNaN(transform.originalValue) || isNaN(transform.targetValue)) + ) + ); + }); + }, + update: function(position) { + var style = { }, transform, i = this.transforms.length; + while(i--) + style[(transform = this.transforms[i]).style] = + transform.unit=='color' ? '#'+ + (Math.round(transform.originalValue[0]+ + (transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart() + + (Math.round(transform.originalValue[1]+ + (transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart() + + (Math.round(transform.originalValue[2]+ + (transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart() : + (transform.originalValue + + (transform.targetValue - transform.originalValue) * position).toFixed(3) + + (transform.unit === null ? '' : transform.unit); + this.element.setStyle(style, true); + } +}); + +Effect.Transform = Class.create({ + initialize: function(tracks){ + this.tracks = []; + this.options = arguments[1] || { }; + this.addTracks(tracks); + }, + addTracks: function(tracks){ + tracks.each(function(track){ + track = $H(track); + var data = track.values().first(); + this.tracks.push($H({ + ids: track.keys().first(), + effect: Effect.Morph, + options: { style: data } + })); + }.bind(this)); + return this; + }, + play: function(){ + return new Effect.Parallel( + this.tracks.map(function(track){ + var ids = track.get('ids'), effect = track.get('effect'), options = track.get('options'); + var elements = [$(ids) || $$(ids)].flatten(); + return elements.map(function(e){ return new effect(e, Object.extend({ sync:true }, options)) }); + }).flatten(), + this.options + ); + } +}); + +Element.CSS_PROPERTIES = $w( + 'backgroundColor backgroundPosition borderBottomColor borderBottomStyle ' + + 'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth ' + + 'borderRightColor borderRightStyle borderRightWidth borderSpacing ' + + 'borderTopColor borderTopStyle borderTopWidth bottom clip color ' + + 'fontSize fontWeight height left letterSpacing lineHeight ' + + 'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+ + 'maxWidth minHeight minWidth opacity outlineColor outlineOffset ' + + 'outlineWidth paddingBottom paddingLeft paddingRight paddingTop ' + + 'right textIndent top width wordSpacing zIndex'); + +Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/; + +String.__parseStyleElement = document.createElement('div'); +String.prototype.parseStyle = function(){ + var style, styleRules = $H(); + if (Prototype.Browser.WebKit) + style = new Element('div',{style:this}).style; + else { + String.__parseStyleElement.innerHTML = '
    '; + style = String.__parseStyleElement.childNodes[0].style; + } + + Element.CSS_PROPERTIES.each(function(property){ + if (style[property]) styleRules.set(property, style[property]); + }); + + if (Prototype.Browser.IE && this.include('opacity')) + styleRules.set('opacity', this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]); + + return styleRules; +}; + +if (document.defaultView && document.defaultView.getComputedStyle) { + Element.getStyles = function(element) { + var css = document.defaultView.getComputedStyle($(element), null); + return Element.CSS_PROPERTIES.inject({ }, function(styles, property) { + styles[property] = css[property]; + return styles; + }); + }; +} else { + Element.getStyles = function(element) { + element = $(element); + var css = element.currentStyle, styles; + styles = Element.CSS_PROPERTIES.inject({ }, function(results, property) { + results[property] = css[property]; + return results; + }); + if (!styles.opacity) styles.opacity = element.getOpacity(); + return styles; + }; +} + +Effect.Methods = { + morph: function(element, style) { + element = $(element); + new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || { })); + return element; + }, + visualEffect: function(element, effect, options) { + element = $(element); + var s = effect.dasherize().camelize(), klass = s.charAt(0).toUpperCase() + s.substring(1); + new Effect[klass](element, options); + return element; + }, + highlight: function(element, options) { + element = $(element); + new Effect.Highlight(element, options); + return element; + } +}; + +$w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+ + 'pulsate shake puff squish switchOff dropOut').each( + function(effect) { + Effect.Methods[effect] = function(element, options){ + element = $(element); + Effect[effect.charAt(0).toUpperCase() + effect.substring(1)](element, options); + return element; + }; + } +); + +$w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each( + function(f) { Effect.Methods[f] = Element[f]; } +); + +Element.addMethods(Effect.Methods); \ No newline at end of file diff --git a/public/javascripts/prototype.js b/public/javascripts/prototype.js new file mode 100644 index 0000000..dfe8ab4 --- /dev/null +++ b/public/javascripts/prototype.js @@ -0,0 +1,4320 @@ +/* Prototype JavaScript framework, version 1.6.0.3 + * (c) 2005-2008 Sam Stephenson + * + * Prototype is freely distributable under the terms of an MIT-style license. + * For details, see the Prototype web site: http://www.prototypejs.org/ + * + *--------------------------------------------------------------------------*/ + +var Prototype = { + Version: '1.6.0.3', + + Browser: { + IE: !!(window.attachEvent && + navigator.userAgent.indexOf('Opera') === -1), + Opera: navigator.userAgent.indexOf('Opera') > -1, + WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1, + Gecko: navigator.userAgent.indexOf('Gecko') > -1 && + navigator.userAgent.indexOf('KHTML') === -1, + MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/) + }, + + BrowserFeatures: { + XPath: !!document.evaluate, + SelectorsAPI: !!document.querySelector, + ElementExtensions: !!window.HTMLElement, + SpecificElementExtensions: + document.createElement('div')['__proto__'] && + document.createElement('div')['__proto__'] !== + document.createElement('form')['__proto__'] + }, + + ScriptFragment: ']*>([\\S\\s]*?)<\/script>', + JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/, + + emptyFunction: function() { }, + K: function(x) { return x } +}; + +if (Prototype.Browser.MobileSafari) + Prototype.BrowserFeatures.SpecificElementExtensions = false; + + +/* Based on Alex Arnell's inheritance implementation. */ +var Class = { + create: function() { + var parent = null, properties = $A(arguments); + if (Object.isFunction(properties[0])) + parent = properties.shift(); + + function klass() { + this.initialize.apply(this, arguments); + } + + Object.extend(klass, Class.Methods); + klass.superclass = parent; + klass.subclasses = []; + + if (parent) { + var subclass = function() { }; + subclass.prototype = parent.prototype; + klass.prototype = new subclass; + parent.subclasses.push(klass); + } + + for (var i = 0; i < properties.length; i++) + klass.addMethods(properties[i]); + + if (!klass.prototype.initialize) + klass.prototype.initialize = Prototype.emptyFunction; + + klass.prototype.constructor = klass; + + return klass; + } +}; + +Class.Methods = { + addMethods: function(source) { + var ancestor = this.superclass && this.superclass.prototype; + var properties = Object.keys(source); + + if (!Object.keys({ toString: true }).length) + properties.push("toString", "valueOf"); + + for (var i = 0, length = properties.length; i < length; i++) { + var property = properties[i], value = source[property]; + if (ancestor && Object.isFunction(value) && + value.argumentNames().first() == "$super") { + var method = value; + value = (function(m) { + return function() { return ancestor[m].apply(this, arguments) }; + })(property).wrap(method); + + value.valueOf = method.valueOf.bind(method); + value.toString = method.toString.bind(method); + } + this.prototype[property] = value; + } + + return this; + } +}; + +var Abstract = { }; + +Object.extend = function(destination, source) { + for (var property in source) + destination[property] = source[property]; + return destination; +}; + +Object.extend(Object, { + inspect: function(object) { + try { + if (Object.isUndefined(object)) return 'undefined'; + if (object === null) return 'null'; + return object.inspect ? object.inspect() : String(object); + } catch (e) { + if (e instanceof RangeError) return '...'; + throw e; + } + }, + + toJSON: function(object) { + var type = typeof object; + switch (type) { + case 'undefined': + case 'function': + case 'unknown': return; + case 'boolean': return object.toString(); + } + + if (object === null) return 'null'; + if (object.toJSON) return object.toJSON(); + if (Object.isElement(object)) return; + + var results = []; + for (var property in object) { + var value = Object.toJSON(object[property]); + if (!Object.isUndefined(value)) + results.push(property.toJSON() + ': ' + value); + } + + return '{' + results.join(', ') + '}'; + }, + + toQueryString: function(object) { + return $H(object).toQueryString(); + }, + + toHTML: function(object) { + return object && object.toHTML ? object.toHTML() : String.interpret(object); + }, + + keys: function(object) { + var keys = []; + for (var property in object) + keys.push(property); + return keys; + }, + + values: function(object) { + var values = []; + for (var property in object) + values.push(object[property]); + return values; + }, + + clone: function(object) { + return Object.extend({ }, object); + }, + + isElement: function(object) { + return !!(object && object.nodeType == 1); + }, + + isArray: function(object) { + return object != null && typeof object == "object" && + 'splice' in object && 'join' in object; + }, + + isHash: function(object) { + return object instanceof Hash; + }, + + isFunction: function(object) { + return typeof object == "function"; + }, + + isString: function(object) { + return typeof object == "string"; + }, + + isNumber: function(object) { + return typeof object == "number"; + }, + + isUndefined: function(object) { + return typeof object == "undefined"; + } +}); + +Object.extend(Function.prototype, { + argumentNames: function() { + var names = this.toString().match(/^[\s\(]*function[^(]*\(([^\)]*)\)/)[1] + .replace(/\s+/g, '').split(','); + return names.length == 1 && !names[0] ? [] : names; + }, + + bind: function() { + if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this; + var __method = this, args = $A(arguments), object = args.shift(); + return function() { + return __method.apply(object, args.concat($A(arguments))); + } + }, + + bindAsEventListener: function() { + var __method = this, args = $A(arguments), object = args.shift(); + return function(event) { + return __method.apply(object, [event || window.event].concat(args)); + } + }, + + curry: function() { + if (!arguments.length) return this; + var __method = this, args = $A(arguments); + return function() { + return __method.apply(this, args.concat($A(arguments))); + } + }, + + delay: function() { + var __method = this, args = $A(arguments), timeout = args.shift() * 1000; + return window.setTimeout(function() { + return __method.apply(__method, args); + }, timeout); + }, + + defer: function() { + var args = [0.01].concat($A(arguments)); + return this.delay.apply(this, args); + }, + + wrap: function(wrapper) { + var __method = this; + return function() { + return wrapper.apply(this, [__method.bind(this)].concat($A(arguments))); + } + }, + + methodize: function() { + if (this._methodized) return this._methodized; + var __method = this; + return this._methodized = function() { + return __method.apply(null, [this].concat($A(arguments))); + }; + } +}); + +Date.prototype.toJSON = function() { + return '"' + this.getUTCFullYear() + '-' + + (this.getUTCMonth() + 1).toPaddedString(2) + '-' + + this.getUTCDate().toPaddedString(2) + 'T' + + this.getUTCHours().toPaddedString(2) + ':' + + this.getUTCMinutes().toPaddedString(2) + ':' + + this.getUTCSeconds().toPaddedString(2) + 'Z"'; +}; + +var Try = { + these: function() { + var returnValue; + + for (var i = 0, length = arguments.length; i < length; i++) { + var lambda = arguments[i]; + try { + returnValue = lambda(); + break; + } catch (e) { } + } + + return returnValue; + } +}; + +RegExp.prototype.match = RegExp.prototype.test; + +RegExp.escape = function(str) { + return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1'); +}; + +/*--------------------------------------------------------------------------*/ + +var PeriodicalExecuter = Class.create({ + initialize: function(callback, frequency) { + this.callback = callback; + this.frequency = frequency; + this.currentlyExecuting = false; + + this.registerCallback(); + }, + + registerCallback: function() { + this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000); + }, + + execute: function() { + this.callback(this); + }, + + stop: function() { + if (!this.timer) return; + clearInterval(this.timer); + this.timer = null; + }, + + onTimerEvent: function() { + if (!this.currentlyExecuting) { + try { + this.currentlyExecuting = true; + this.execute(); + } finally { + this.currentlyExecuting = false; + } + } + } +}); +Object.extend(String, { + interpret: function(value) { + return value == null ? '' : String(value); + }, + specialChar: { + '\b': '\\b', + '\t': '\\t', + '\n': '\\n', + '\f': '\\f', + '\r': '\\r', + '\\': '\\\\' + } +}); + +Object.extend(String.prototype, { + gsub: function(pattern, replacement) { + var result = '', source = this, match; + replacement = arguments.callee.prepareReplacement(replacement); + + while (source.length > 0) { + if (match = source.match(pattern)) { + result += source.slice(0, match.index); + result += String.interpret(replacement(match)); + source = source.slice(match.index + match[0].length); + } else { + result += source, source = ''; + } + } + return result; + }, + + sub: function(pattern, replacement, count) { + replacement = this.gsub.prepareReplacement(replacement); + count = Object.isUndefined(count) ? 1 : count; + + return this.gsub(pattern, function(match) { + if (--count < 0) return match[0]; + return replacement(match); + }); + }, + + scan: function(pattern, iterator) { + this.gsub(pattern, iterator); + return String(this); + }, + + truncate: function(length, truncation) { + length = length || 30; + truncation = Object.isUndefined(truncation) ? '...' : truncation; + return this.length > length ? + this.slice(0, length - truncation.length) + truncation : String(this); + }, + + strip: function() { + return this.replace(/^\s+/, '').replace(/\s+$/, ''); + }, + + stripTags: function() { + return this.replace(/<\/?[^>]+>/gi, ''); + }, + + stripScripts: function() { + return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), ''); + }, + + extractScripts: function() { + var matchAll = new RegExp(Prototype.ScriptFragment, 'img'); + var matchOne = new RegExp(Prototype.ScriptFragment, 'im'); + return (this.match(matchAll) || []).map(function(scriptTag) { + return (scriptTag.match(matchOne) || ['', ''])[1]; + }); + }, + + evalScripts: function() { + return this.extractScripts().map(function(script) { return eval(script) }); + }, + + escapeHTML: function() { + var self = arguments.callee; + self.text.data = this; + return self.div.innerHTML; + }, + + unescapeHTML: function() { + var div = new Element('div'); + div.innerHTML = this.stripTags(); + return div.childNodes[0] ? (div.childNodes.length > 1 ? + $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) : + div.childNodes[0].nodeValue) : ''; + }, + + toQueryParams: function(separator) { + var match = this.strip().match(/([^?#]*)(#.*)?$/); + if (!match) return { }; + + return match[1].split(separator || '&').inject({ }, function(hash, pair) { + if ((pair = pair.split('='))[0]) { + var key = decodeURIComponent(pair.shift()); + var value = pair.length > 1 ? pair.join('=') : pair[0]; + if (value != undefined) value = decodeURIComponent(value); + + if (key in hash) { + if (!Object.isArray(hash[key])) hash[key] = [hash[key]]; + hash[key].push(value); + } + else hash[key] = value; + } + return hash; + }); + }, + + toArray: function() { + return this.split(''); + }, + + succ: function() { + return this.slice(0, this.length - 1) + + String.fromCharCode(this.charCodeAt(this.length - 1) + 1); + }, + + times: function(count) { + return count < 1 ? '' : new Array(count + 1).join(this); + }, + + camelize: function() { + var parts = this.split('-'), len = parts.length; + if (len == 1) return parts[0]; + + var camelized = this.charAt(0) == '-' + ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1) + : parts[0]; + + for (var i = 1; i < len; i++) + camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1); + + return camelized; + }, + + capitalize: function() { + return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase(); + }, + + underscore: function() { + return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase(); + }, + + dasherize: function() { + return this.gsub(/_/,'-'); + }, + + inspect: function(useDoubleQuotes) { + var escapedString = this.gsub(/[\x00-\x1f\\]/, function(match) { + var character = String.specialChar[match[0]]; + return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16); + }); + if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"'; + return "'" + escapedString.replace(/'/g, '\\\'') + "'"; + }, + + toJSON: function() { + return this.inspect(true); + }, + + unfilterJSON: function(filter) { + return this.sub(filter || Prototype.JSONFilter, '#{1}'); + }, + + isJSON: function() { + var str = this; + if (str.blank()) return false; + str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, ''); + return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str); + }, + + evalJSON: function(sanitize) { + var json = this.unfilterJSON(); + try { + if (!sanitize || json.isJSON()) return eval('(' + json + ')'); + } catch (e) { } + throw new SyntaxError('Badly formed JSON string: ' + this.inspect()); + }, + + include: function(pattern) { + return this.indexOf(pattern) > -1; + }, + + startsWith: function(pattern) { + return this.indexOf(pattern) === 0; + }, + + endsWith: function(pattern) { + var d = this.length - pattern.length; + return d >= 0 && this.lastIndexOf(pattern) === d; + }, + + empty: function() { + return this == ''; + }, + + blank: function() { + return /^\s*$/.test(this); + }, + + interpolate: function(object, pattern) { + return new Template(this, pattern).evaluate(object); + } +}); + +if (Prototype.Browser.WebKit || Prototype.Browser.IE) Object.extend(String.prototype, { + escapeHTML: function() { + return this.replace(/&/g,'&').replace(//g,'>'); + }, + unescapeHTML: function() { + return this.stripTags().replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>'); + } +}); + +String.prototype.gsub.prepareReplacement = function(replacement) { + if (Object.isFunction(replacement)) return replacement; + var template = new Template(replacement); + return function(match) { return template.evaluate(match) }; +}; + +String.prototype.parseQuery = String.prototype.toQueryParams; + +Object.extend(String.prototype.escapeHTML, { + div: document.createElement('div'), + text: document.createTextNode('') +}); + +String.prototype.escapeHTML.div.appendChild(String.prototype.escapeHTML.text); + +var Template = Class.create({ + initialize: function(template, pattern) { + this.template = template.toString(); + this.pattern = pattern || Template.Pattern; + }, + + evaluate: function(object) { + if (Object.isFunction(object.toTemplateReplacements)) + object = object.toTemplateReplacements(); + + return this.template.gsub(this.pattern, function(match) { + if (object == null) return ''; + + var before = match[1] || ''; + if (before == '\\') return match[2]; + + var ctx = object, expr = match[3]; + var pattern = /^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/; + match = pattern.exec(expr); + if (match == null) return before; + + while (match != null) { + var comp = match[1].startsWith('[') ? match[2].gsub('\\\\]', ']') : match[1]; + ctx = ctx[comp]; + if (null == ctx || '' == match[3]) break; + expr = expr.substring('[' == match[3] ? match[1].length : match[0].length); + match = pattern.exec(expr); + } + + return before + String.interpret(ctx); + }); + } +}); +Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/; + +var $break = { }; + +var Enumerable = { + each: function(iterator, context) { + var index = 0; + try { + this._each(function(value) { + iterator.call(context, value, index++); + }); + } catch (e) { + if (e != $break) throw e; + } + return this; + }, + + eachSlice: function(number, iterator, context) { + var index = -number, slices = [], array = this.toArray(); + if (number < 1) return array; + while ((index += number) < array.length) + slices.push(array.slice(index, index+number)); + return slices.collect(iterator, context); + }, + + all: function(iterator, context) { + iterator = iterator || Prototype.K; + var result = true; + this.each(function(value, index) { + result = result && !!iterator.call(context, value, index); + if (!result) throw $break; + }); + return result; + }, + + any: function(iterator, context) { + iterator = iterator || Prototype.K; + var result = false; + this.each(function(value, index) { + if (result = !!iterator.call(context, value, index)) + throw $break; + }); + return result; + }, + + collect: function(iterator, context) { + iterator = iterator || Prototype.K; + var results = []; + this.each(function(value, index) { + results.push(iterator.call(context, value, index)); + }); + return results; + }, + + detect: function(iterator, context) { + var result; + this.each(function(value, index) { + if (iterator.call(context, value, index)) { + result = value; + throw $break; + } + }); + return result; + }, + + findAll: function(iterator, context) { + var results = []; + this.each(function(value, index) { + if (iterator.call(context, value, index)) + results.push(value); + }); + return results; + }, + + grep: function(filter, iterator, context) { + iterator = iterator || Prototype.K; + var results = []; + + if (Object.isString(filter)) + filter = new RegExp(filter); + + this.each(function(value, index) { + if (filter.match(value)) + results.push(iterator.call(context, value, index)); + }); + return results; + }, + + include: function(object) { + if (Object.isFunction(this.indexOf)) + if (this.indexOf(object) != -1) return true; + + var found = false; + this.each(function(value) { + if (value == object) { + found = true; + throw $break; + } + }); + return found; + }, + + inGroupsOf: function(number, fillWith) { + fillWith = Object.isUndefined(fillWith) ? null : fillWith; + return this.eachSlice(number, function(slice) { + while(slice.length < number) slice.push(fillWith); + return slice; + }); + }, + + inject: function(memo, iterator, context) { + this.each(function(value, index) { + memo = iterator.call(context, memo, value, index); + }); + return memo; + }, + + invoke: function(method) { + var args = $A(arguments).slice(1); + return this.map(function(value) { + return value[method].apply(value, args); + }); + }, + + max: function(iterator, context) { + iterator = iterator || Prototype.K; + var result; + this.each(function(value, index) { + value = iterator.call(context, value, index); + if (result == null || value >= result) + result = value; + }); + return result; + }, + + min: function(iterator, context) { + iterator = iterator || Prototype.K; + var result; + this.each(function(value, index) { + value = iterator.call(context, value, index); + if (result == null || value < result) + result = value; + }); + return result; + }, + + partition: function(iterator, context) { + iterator = iterator || Prototype.K; + var trues = [], falses = []; + this.each(function(value, index) { + (iterator.call(context, value, index) ? + trues : falses).push(value); + }); + return [trues, falses]; + }, + + pluck: function(property) { + var results = []; + this.each(function(value) { + results.push(value[property]); + }); + return results; + }, + + reject: function(iterator, context) { + var results = []; + this.each(function(value, index) { + if (!iterator.call(context, value, index)) + results.push(value); + }); + return results; + }, + + sortBy: function(iterator, context) { + return this.map(function(value, index) { + return { + value: value, + criteria: iterator.call(context, value, index) + }; + }).sort(function(left, right) { + var a = left.criteria, b = right.criteria; + return a < b ? -1 : a > b ? 1 : 0; + }).pluck('value'); + }, + + toArray: function() { + return this.map(); + }, + + zip: function() { + var iterator = Prototype.K, args = $A(arguments); + if (Object.isFunction(args.last())) + iterator = args.pop(); + + var collections = [this].concat(args).map($A); + return this.map(function(value, index) { + return iterator(collections.pluck(index)); + }); + }, + + size: function() { + return this.toArray().length; + }, + + inspect: function() { + return '#'; + } +}; + +Object.extend(Enumerable, { + map: Enumerable.collect, + find: Enumerable.detect, + select: Enumerable.findAll, + filter: Enumerable.findAll, + member: Enumerable.include, + entries: Enumerable.toArray, + every: Enumerable.all, + some: Enumerable.any +}); +function $A(iterable) { + if (!iterable) return []; + if (iterable.toArray) return iterable.toArray(); + var length = iterable.length || 0, results = new Array(length); + while (length--) results[length] = iterable[length]; + return results; +} + +if (Prototype.Browser.WebKit) { + $A = function(iterable) { + if (!iterable) return []; + // In Safari, only use the `toArray` method if it's not a NodeList. + // A NodeList is a function, has an function `item` property, and a numeric + // `length` property. Adapted from Google Doctype. + if (!(typeof iterable === 'function' && typeof iterable.length === + 'number' && typeof iterable.item === 'function') && iterable.toArray) + return iterable.toArray(); + var length = iterable.length || 0, results = new Array(length); + while (length--) results[length] = iterable[length]; + return results; + }; +} + +Array.from = $A; + +Object.extend(Array.prototype, Enumerable); + +if (!Array.prototype._reverse) Array.prototype._reverse = Array.prototype.reverse; + +Object.extend(Array.prototype, { + _each: function(iterator) { + for (var i = 0, length = this.length; i < length; i++) + iterator(this[i]); + }, + + clear: function() { + this.length = 0; + return this; + }, + + first: function() { + return this[0]; + }, + + last: function() { + return this[this.length - 1]; + }, + + compact: function() { + return this.select(function(value) { + return value != null; + }); + }, + + flatten: function() { + return this.inject([], function(array, value) { + return array.concat(Object.isArray(value) ? + value.flatten() : [value]); + }); + }, + + without: function() { + var values = $A(arguments); + return this.select(function(value) { + return !values.include(value); + }); + }, + + reverse: function(inline) { + return (inline !== false ? this : this.toArray())._reverse(); + }, + + reduce: function() { + return this.length > 1 ? this : this[0]; + }, + + uniq: function(sorted) { + return this.inject([], function(array, value, index) { + if (0 == index || (sorted ? array.last() != value : !array.include(value))) + array.push(value); + return array; + }); + }, + + intersect: function(array) { + return this.uniq().findAll(function(item) { + return array.detect(function(value) { return item === value }); + }); + }, + + clone: function() { + return [].concat(this); + }, + + size: function() { + return this.length; + }, + + inspect: function() { + return '[' + this.map(Object.inspect).join(', ') + ']'; + }, + + toJSON: function() { + var results = []; + this.each(function(object) { + var value = Object.toJSON(object); + if (!Object.isUndefined(value)) results.push(value); + }); + return '[' + results.join(', ') + ']'; + } +}); + +// use native browser JS 1.6 implementation if available +if (Object.isFunction(Array.prototype.forEach)) + Array.prototype._each = Array.prototype.forEach; + +if (!Array.prototype.indexOf) Array.prototype.indexOf = function(item, i) { + i || (i = 0); + var length = this.length; + if (i < 0) i = length + i; + for (; i < length; i++) + if (this[i] === item) return i; + return -1; +}; + +if (!Array.prototype.lastIndexOf) Array.prototype.lastIndexOf = function(item, i) { + i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1; + var n = this.slice(0, i).reverse().indexOf(item); + return (n < 0) ? n : i - n - 1; +}; + +Array.prototype.toArray = Array.prototype.clone; + +function $w(string) { + if (!Object.isString(string)) return []; + string = string.strip(); + return string ? string.split(/\s+/) : []; +} + +if (Prototype.Browser.Opera){ + Array.prototype.concat = function() { + var array = []; + for (var i = 0, length = this.length; i < length; i++) array.push(this[i]); + for (var i = 0, length = arguments.length; i < length; i++) { + if (Object.isArray(arguments[i])) { + for (var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++) + array.push(arguments[i][j]); + } else { + array.push(arguments[i]); + } + } + return array; + }; +} +Object.extend(Number.prototype, { + toColorPart: function() { + return this.toPaddedString(2, 16); + }, + + succ: function() { + return this + 1; + }, + + times: function(iterator, context) { + $R(0, this, true).each(iterator, context); + return this; + }, + + toPaddedString: function(length, radix) { + var string = this.toString(radix || 10); + return '0'.times(length - string.length) + string; + }, + + toJSON: function() { + return isFinite(this) ? this.toString() : 'null'; + } +}); + +$w('abs round ceil floor').each(function(method){ + Number.prototype[method] = Math[method].methodize(); +}); +function $H(object) { + return new Hash(object); +}; + +var Hash = Class.create(Enumerable, (function() { + + function toQueryPair(key, value) { + if (Object.isUndefined(value)) return key; + return key + '=' + encodeURIComponent(String.interpret(value)); + } + + return { + initialize: function(object) { + this._object = Object.isHash(object) ? object.toObject() : Object.clone(object); + }, + + _each: function(iterator) { + for (var key in this._object) { + var value = this._object[key], pair = [key, value]; + pair.key = key; + pair.value = value; + iterator(pair); + } + }, + + set: function(key, value) { + return this._object[key] = value; + }, + + get: function(key) { + // simulating poorly supported hasOwnProperty + if (this._object[key] !== Object.prototype[key]) + return this._object[key]; + }, + + unset: function(key) { + var value = this._object[key]; + delete this._object[key]; + return value; + }, + + toObject: function() { + return Object.clone(this._object); + }, + + keys: function() { + return this.pluck('key'); + }, + + values: function() { + return this.pluck('value'); + }, + + index: function(value) { + var match = this.detect(function(pair) { + return pair.value === value; + }); + return match && match.key; + }, + + merge: function(object) { + return this.clone().update(object); + }, + + update: function(object) { + return new Hash(object).inject(this, function(result, pair) { + result.set(pair.key, pair.value); + return result; + }); + }, + + toQueryString: function() { + return this.inject([], function(results, pair) { + var key = encodeURIComponent(pair.key), values = pair.value; + + if (values && typeof values == 'object') { + if (Object.isArray(values)) + return results.concat(values.map(toQueryPair.curry(key))); + } else results.push(toQueryPair(key, values)); + return results; + }).join('&'); + }, + + inspect: function() { + return '#'; + }, + + toJSON: function() { + return Object.toJSON(this.toObject()); + }, + + clone: function() { + return new Hash(this); + } + } +})()); + +Hash.prototype.toTemplateReplacements = Hash.prototype.toObject; +Hash.from = $H; +var ObjectRange = Class.create(Enumerable, { + initialize: function(start, end, exclusive) { + this.start = start; + this.end = end; + this.exclusive = exclusive; + }, + + _each: function(iterator) { + var value = this.start; + while (this.include(value)) { + iterator(value); + value = value.succ(); + } + }, + + include: function(value) { + if (value < this.start) + return false; + if (this.exclusive) + return value < this.end; + return value <= this.end; + } +}); + +var $R = function(start, end, exclusive) { + return new ObjectRange(start, end, exclusive); +}; + +var Ajax = { + getTransport: function() { + return Try.these( + function() {return new XMLHttpRequest()}, + function() {return new ActiveXObject('Msxml2.XMLHTTP')}, + function() {return new ActiveXObject('Microsoft.XMLHTTP')} + ) || false; + }, + + activeRequestCount: 0 +}; + +Ajax.Responders = { + responders: [], + + _each: function(iterator) { + this.responders._each(iterator); + }, + + register: function(responder) { + if (!this.include(responder)) + this.responders.push(responder); + }, + + unregister: function(responder) { + this.responders = this.responders.without(responder); + }, + + dispatch: function(callback, request, transport, json) { + this.each(function(responder) { + if (Object.isFunction(responder[callback])) { + try { + responder[callback].apply(responder, [request, transport, json]); + } catch (e) { } + } + }); + } +}; + +Object.extend(Ajax.Responders, Enumerable); + +Ajax.Responders.register({ + onCreate: function() { Ajax.activeRequestCount++ }, + onComplete: function() { Ajax.activeRequestCount-- } +}); + +Ajax.Base = Class.create({ + initialize: function(options) { + this.options = { + method: 'post', + asynchronous: true, + contentType: 'application/x-www-form-urlencoded', + encoding: 'UTF-8', + parameters: '', + evalJSON: true, + evalJS: true + }; + Object.extend(this.options, options || { }); + + this.options.method = this.options.method.toLowerCase(); + + if (Object.isString(this.options.parameters)) + this.options.parameters = this.options.parameters.toQueryParams(); + else if (Object.isHash(this.options.parameters)) + this.options.parameters = this.options.parameters.toObject(); + } +}); + +Ajax.Request = Class.create(Ajax.Base, { + _complete: false, + + initialize: function($super, url, options) { + $super(options); + this.transport = Ajax.getTransport(); + this.request(url); + }, + + request: function(url) { + this.url = url; + this.method = this.options.method; + var params = Object.clone(this.options.parameters); + + if (!['get', 'post'].include(this.method)) { + // simulate other verbs over post + params['_method'] = this.method; + this.method = 'post'; + } + + this.parameters = params; + + if (params = Object.toQueryString(params)) { + // when GET, append parameters to URL + if (this.method == 'get') + this.url += (this.url.include('?') ? '&' : '?') + params; + else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) + params += '&_='; + } + + try { + var response = new Ajax.Response(this); + if (this.options.onCreate) this.options.onCreate(response); + Ajax.Responders.dispatch('onCreate', this, response); + + this.transport.open(this.method.toUpperCase(), this.url, + this.options.asynchronous); + + if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1); + + this.transport.onreadystatechange = this.onStateChange.bind(this); + this.setRequestHeaders(); + + this.body = this.method == 'post' ? (this.options.postBody || params) : null; + this.transport.send(this.body); + + /* Force Firefox to handle ready state 4 for synchronous requests */ + if (!this.options.asynchronous && this.transport.overrideMimeType) + this.onStateChange(); + + } + catch (e) { + this.dispatchException(e); + } + }, + + onStateChange: function() { + var readyState = this.transport.readyState; + if (readyState > 1 && !((readyState == 4) && this._complete)) + this.respondToReadyState(this.transport.readyState); + }, + + setRequestHeaders: function() { + var headers = { + 'X-Requested-With': 'XMLHttpRequest', + 'X-Prototype-Version': Prototype.Version, + 'Accept': 'text/javascript, text/html, application/xml, text/xml, */*' + }; + + if (this.method == 'post') { + headers['Content-type'] = this.options.contentType + + (this.options.encoding ? '; charset=' + this.options.encoding : ''); + + /* Force "Connection: close" for older Mozilla browsers to work + * around a bug where XMLHttpRequest sends an incorrect + * Content-length header. See Mozilla Bugzilla #246651. + */ + if (this.transport.overrideMimeType && + (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005) + headers['Connection'] = 'close'; + } + + // user-defined headers + if (typeof this.options.requestHeaders == 'object') { + var extras = this.options.requestHeaders; + + if (Object.isFunction(extras.push)) + for (var i = 0, length = extras.length; i < length; i += 2) + headers[extras[i]] = extras[i+1]; + else + $H(extras).each(function(pair) { headers[pair.key] = pair.value }); + } + + for (var name in headers) + this.transport.setRequestHeader(name, headers[name]); + }, + + success: function() { + var status = this.getStatus(); + return !status || (status >= 200 && status < 300); + }, + + getStatus: function() { + try { + return this.transport.status || 0; + } catch (e) { return 0 } + }, + + respondToReadyState: function(readyState) { + var state = Ajax.Request.Events[readyState], response = new Ajax.Response(this); + + if (state == 'Complete') { + try { + this._complete = true; + (this.options['on' + response.status] + || this.options['on' + (this.success() ? 'Success' : 'Failure')] + || Prototype.emptyFunction)(response, response.headerJSON); + } catch (e) { + this.dispatchException(e); + } + + var contentType = response.getHeader('Content-type'); + if (this.options.evalJS == 'force' + || (this.options.evalJS && this.isSameOrigin() && contentType + && contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i))) + this.evalResponse(); + } + + try { + (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON); + Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON); + } catch (e) { + this.dispatchException(e); + } + + if (state == 'Complete') { + // avoid memory leak in MSIE: clean up + this.transport.onreadystatechange = Prototype.emptyFunction; + } + }, + + isSameOrigin: function() { + var m = this.url.match(/^\s*https?:\/\/[^\/]*/); + return !m || (m[0] == '#{protocol}//#{domain}#{port}'.interpolate({ + protocol: location.protocol, + domain: document.domain, + port: location.port ? ':' + location.port : '' + })); + }, + + getHeader: function(name) { + try { + return this.transport.getResponseHeader(name) || null; + } catch (e) { return null } + }, + + evalResponse: function() { + try { + return eval((this.transport.responseText || '').unfilterJSON()); + } catch (e) { + this.dispatchException(e); + } + }, + + dispatchException: function(exception) { + (this.options.onException || Prototype.emptyFunction)(this, exception); + Ajax.Responders.dispatch('onException', this, exception); + } +}); + +Ajax.Request.Events = + ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete']; + +Ajax.Response = Class.create({ + initialize: function(request){ + this.request = request; + var transport = this.transport = request.transport, + readyState = this.readyState = transport.readyState; + + if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) { + this.status = this.getStatus(); + this.statusText = this.getStatusText(); + this.responseText = String.interpret(transport.responseText); + this.headerJSON = this._getHeaderJSON(); + } + + if(readyState == 4) { + var xml = transport.responseXML; + this.responseXML = Object.isUndefined(xml) ? null : xml; + this.responseJSON = this._getResponseJSON(); + } + }, + + status: 0, + statusText: '', + + getStatus: Ajax.Request.prototype.getStatus, + + getStatusText: function() { + try { + return this.transport.statusText || ''; + } catch (e) { return '' } + }, + + getHeader: Ajax.Request.prototype.getHeader, + + getAllHeaders: function() { + try { + return this.getAllResponseHeaders(); + } catch (e) { return null } + }, + + getResponseHeader: function(name) { + return this.transport.getResponseHeader(name); + }, + + getAllResponseHeaders: function() { + return this.transport.getAllResponseHeaders(); + }, + + _getHeaderJSON: function() { + var json = this.getHeader('X-JSON'); + if (!json) return null; + json = decodeURIComponent(escape(json)); + try { + return json.evalJSON(this.request.options.sanitizeJSON || + !this.request.isSameOrigin()); + } catch (e) { + this.request.dispatchException(e); + } + }, + + _getResponseJSON: function() { + var options = this.request.options; + if (!options.evalJSON || (options.evalJSON != 'force' && + !(this.getHeader('Content-type') || '').include('application/json')) || + this.responseText.blank()) + return null; + try { + return this.responseText.evalJSON(options.sanitizeJSON || + !this.request.isSameOrigin()); + } catch (e) { + this.request.dispatchException(e); + } + } +}); + +Ajax.Updater = Class.create(Ajax.Request, { + initialize: function($super, container, url, options) { + this.container = { + success: (container.success || container), + failure: (container.failure || (container.success ? null : container)) + }; + + options = Object.clone(options); + var onComplete = options.onComplete; + options.onComplete = (function(response, json) { + this.updateContent(response.responseText); + if (Object.isFunction(onComplete)) onComplete(response, json); + }).bind(this); + + $super(url, options); + }, + + updateContent: function(responseText) { + var receiver = this.container[this.success() ? 'success' : 'failure'], + options = this.options; + + if (!options.evalScripts) responseText = responseText.stripScripts(); + + if (receiver = $(receiver)) { + if (options.insertion) { + if (Object.isString(options.insertion)) { + var insertion = { }; insertion[options.insertion] = responseText; + receiver.insert(insertion); + } + else options.insertion(receiver, responseText); + } + else receiver.update(responseText); + } + } +}); + +Ajax.PeriodicalUpdater = Class.create(Ajax.Base, { + initialize: function($super, container, url, options) { + $super(options); + this.onComplete = this.options.onComplete; + + this.frequency = (this.options.frequency || 2); + this.decay = (this.options.decay || 1); + + this.updater = { }; + this.container = container; + this.url = url; + + this.start(); + }, + + start: function() { + this.options.onComplete = this.updateComplete.bind(this); + this.onTimerEvent(); + }, + + stop: function() { + this.updater.options.onComplete = undefined; + clearTimeout(this.timer); + (this.onComplete || Prototype.emptyFunction).apply(this, arguments); + }, + + updateComplete: function(response) { + if (this.options.decay) { + this.decay = (response.responseText == this.lastText ? + this.decay * this.options.decay : 1); + + this.lastText = response.responseText; + } + this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency); + }, + + onTimerEvent: function() { + this.updater = new Ajax.Updater(this.container, this.url, this.options); + } +}); +function $(element) { + if (arguments.length > 1) { + for (var i = 0, elements = [], length = arguments.length; i < length; i++) + elements.push($(arguments[i])); + return elements; + } + if (Object.isString(element)) + element = document.getElementById(element); + return Element.extend(element); +} + +if (Prototype.BrowserFeatures.XPath) { + document._getElementsByXPath = function(expression, parentElement) { + var results = []; + var query = document.evaluate(expression, $(parentElement) || document, + null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); + for (var i = 0, length = query.snapshotLength; i < length; i++) + results.push(Element.extend(query.snapshotItem(i))); + return results; + }; +} + +/*--------------------------------------------------------------------------*/ + +if (!window.Node) var Node = { }; + +if (!Node.ELEMENT_NODE) { + // DOM level 2 ECMAScript Language Binding + Object.extend(Node, { + ELEMENT_NODE: 1, + ATTRIBUTE_NODE: 2, + TEXT_NODE: 3, + CDATA_SECTION_NODE: 4, + ENTITY_REFERENCE_NODE: 5, + ENTITY_NODE: 6, + PROCESSING_INSTRUCTION_NODE: 7, + COMMENT_NODE: 8, + DOCUMENT_NODE: 9, + DOCUMENT_TYPE_NODE: 10, + DOCUMENT_FRAGMENT_NODE: 11, + NOTATION_NODE: 12 + }); +} + +(function() { + var element = this.Element; + this.Element = function(tagName, attributes) { + attributes = attributes || { }; + tagName = tagName.toLowerCase(); + var cache = Element.cache; + if (Prototype.Browser.IE && attributes.name) { + tagName = '<' + tagName + ' name="' + attributes.name + '">'; + delete attributes.name; + return Element.writeAttribute(document.createElement(tagName), attributes); + } + if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName)); + return Element.writeAttribute(cache[tagName].cloneNode(false), attributes); + }; + Object.extend(this.Element, element || { }); + if (element) this.Element.prototype = element.prototype; +}).call(window); + +Element.cache = { }; + +Element.Methods = { + visible: function(element) { + return $(element).style.display != 'none'; + }, + + toggle: function(element) { + element = $(element); + Element[Element.visible(element) ? 'hide' : 'show'](element); + return element; + }, + + hide: function(element) { + element = $(element); + element.style.display = 'none'; + return element; + }, + + show: function(element) { + element = $(element); + element.style.display = ''; + return element; + }, + + remove: function(element) { + element = $(element); + element.parentNode.removeChild(element); + return element; + }, + + update: function(element, content) { + element = $(element); + if (content && content.toElement) content = content.toElement(); + if (Object.isElement(content)) return element.update().insert(content); + content = Object.toHTML(content); + element.innerHTML = content.stripScripts(); + content.evalScripts.bind(content).defer(); + return element; + }, + + replace: function(element, content) { + element = $(element); + if (content && content.toElement) content = content.toElement(); + else if (!Object.isElement(content)) { + content = Object.toHTML(content); + var range = element.ownerDocument.createRange(); + range.selectNode(element); + content.evalScripts.bind(content).defer(); + content = range.createContextualFragment(content.stripScripts()); + } + element.parentNode.replaceChild(content, element); + return element; + }, + + insert: function(element, insertions) { + element = $(element); + + if (Object.isString(insertions) || Object.isNumber(insertions) || + Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML))) + insertions = {bottom:insertions}; + + var content, insert, tagName, childNodes; + + for (var position in insertions) { + content = insertions[position]; + position = position.toLowerCase(); + insert = Element._insertionTranslations[position]; + + if (content && content.toElement) content = content.toElement(); + if (Object.isElement(content)) { + insert(element, content); + continue; + } + + content = Object.toHTML(content); + + tagName = ((position == 'before' || position == 'after') + ? element.parentNode : element).tagName.toUpperCase(); + + childNodes = Element._getContentFromAnonymousElement(tagName, content.stripScripts()); + + if (position == 'top' || position == 'after') childNodes.reverse(); + childNodes.each(insert.curry(element)); + + content.evalScripts.bind(content).defer(); + } + + return element; + }, + + wrap: function(element, wrapper, attributes) { + element = $(element); + if (Object.isElement(wrapper)) + $(wrapper).writeAttribute(attributes || { }); + else if (Object.isString(wrapper)) wrapper = new Element(wrapper, attributes); + else wrapper = new Element('div', wrapper); + if (element.parentNode) + element.parentNode.replaceChild(wrapper, element); + wrapper.appendChild(element); + return wrapper; + }, + + inspect: function(element) { + element = $(element); + var result = '<' + element.tagName.toLowerCase(); + $H({'id': 'id', 'className': 'class'}).each(function(pair) { + var property = pair.first(), attribute = pair.last(); + var value = (element[property] || '').toString(); + if (value) result += ' ' + attribute + '=' + value.inspect(true); + }); + return result + '>'; + }, + + recursivelyCollect: function(element, property) { + element = $(element); + var elements = []; + while (element = element[property]) + if (element.nodeType == 1) + elements.push(Element.extend(element)); + return elements; + }, + + ancestors: function(element) { + return $(element).recursivelyCollect('parentNode'); + }, + + descendants: function(element) { + return $(element).select("*"); + }, + + firstDescendant: function(element) { + element = $(element).firstChild; + while (element && element.nodeType != 1) element = element.nextSibling; + return $(element); + }, + + immediateDescendants: function(element) { + if (!(element = $(element).firstChild)) return []; + while (element && element.nodeType != 1) element = element.nextSibling; + if (element) return [element].concat($(element).nextSiblings()); + return []; + }, + + previousSiblings: function(element) { + return $(element).recursivelyCollect('previousSibling'); + }, + + nextSiblings: function(element) { + return $(element).recursivelyCollect('nextSibling'); + }, + + siblings: function(element) { + element = $(element); + return element.previousSiblings().reverse().concat(element.nextSiblings()); + }, + + match: function(element, selector) { + if (Object.isString(selector)) + selector = new Selector(selector); + return selector.match($(element)); + }, + + up: function(element, expression, index) { + element = $(element); + if (arguments.length == 1) return $(element.parentNode); + var ancestors = element.ancestors(); + return Object.isNumber(expression) ? ancestors[expression] : + Selector.findElement(ancestors, expression, index); + }, + + down: function(element, expression, index) { + element = $(element); + if (arguments.length == 1) return element.firstDescendant(); + return Object.isNumber(expression) ? element.descendants()[expression] : + Element.select(element, expression)[index || 0]; + }, + + previous: function(element, expression, index) { + element = $(element); + if (arguments.length == 1) return $(Selector.handlers.previousElementSibling(element)); + var previousSiblings = element.previousSiblings(); + return Object.isNumber(expression) ? previousSiblings[expression] : + Selector.findElement(previousSiblings, expression, index); + }, + + next: function(element, expression, index) { + element = $(element); + if (arguments.length == 1) return $(Selector.handlers.nextElementSibling(element)); + var nextSiblings = element.nextSiblings(); + return Object.isNumber(expression) ? nextSiblings[expression] : + Selector.findElement(nextSiblings, expression, index); + }, + + select: function() { + var args = $A(arguments), element = $(args.shift()); + return Selector.findChildElements(element, args); + }, + + adjacent: function() { + var args = $A(arguments), element = $(args.shift()); + return Selector.findChildElements(element.parentNode, args).without(element); + }, + + identify: function(element) { + element = $(element); + var id = element.readAttribute('id'), self = arguments.callee; + if (id) return id; + do { id = 'anonymous_element_' + self.counter++ } while ($(id)); + element.writeAttribute('id', id); + return id; + }, + + readAttribute: function(element, name) { + element = $(element); + if (Prototype.Browser.IE) { + var t = Element._attributeTranslations.read; + if (t.values[name]) return t.values[name](element, name); + if (t.names[name]) name = t.names[name]; + if (name.include(':')) { + return (!element.attributes || !element.attributes[name]) ? null : + element.attributes[name].value; + } + } + return element.getAttribute(name); + }, + + writeAttribute: function(element, name, value) { + element = $(element); + var attributes = { }, t = Element._attributeTranslations.write; + + if (typeof name == 'object') attributes = name; + else attributes[name] = Object.isUndefined(value) ? true : value; + + for (var attr in attributes) { + name = t.names[attr] || attr; + value = attributes[attr]; + if (t.values[attr]) name = t.values[attr](element, value); + if (value === false || value === null) + element.removeAttribute(name); + else if (value === true) + element.setAttribute(name, name); + else element.setAttribute(name, value); + } + return element; + }, + + getHeight: function(element) { + return $(element).getDimensions().height; + }, + + getWidth: function(element) { + return $(element).getDimensions().width; + }, + + classNames: function(element) { + return new Element.ClassNames(element); + }, + + hasClassName: function(element, className) { + if (!(element = $(element))) return; + var elementClassName = element.className; + return (elementClassName.length > 0 && (elementClassName == className || + new RegExp("(^|\\s)" + className + "(\\s|$)").test(elementClassName))); + }, + + addClassName: function(element, className) { + if (!(element = $(element))) return; + if (!element.hasClassName(className)) + element.className += (element.className ? ' ' : '') + className; + return element; + }, + + removeClassName: function(element, className) { + if (!(element = $(element))) return; + element.className = element.className.replace( + new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ').strip(); + return element; + }, + + toggleClassName: function(element, className) { + if (!(element = $(element))) return; + return element[element.hasClassName(className) ? + 'removeClassName' : 'addClassName'](className); + }, + + // removes whitespace-only text node children + cleanWhitespace: function(element) { + element = $(element); + var node = element.firstChild; + while (node) { + var nextNode = node.nextSibling; + if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) + element.removeChild(node); + node = nextNode; + } + return element; + }, + + empty: function(element) { + return $(element).innerHTML.blank(); + }, + + descendantOf: function(element, ancestor) { + element = $(element), ancestor = $(ancestor); + + if (element.compareDocumentPosition) + return (element.compareDocumentPosition(ancestor) & 8) === 8; + + if (ancestor.contains) + return ancestor.contains(element) && ancestor !== element; + + while (element = element.parentNode) + if (element == ancestor) return true; + + return false; + }, + + scrollTo: function(element) { + element = $(element); + var pos = element.cumulativeOffset(); + window.scrollTo(pos[0], pos[1]); + return element; + }, + + getStyle: function(element, style) { + element = $(element); + style = style == 'float' ? 'cssFloat' : style.camelize(); + var value = element.style[style]; + if (!value || value == 'auto') { + var css = document.defaultView.getComputedStyle(element, null); + value = css ? css[style] : null; + } + if (style == 'opacity') return value ? parseFloat(value) : 1.0; + return value == 'auto' ? null : value; + }, + + getOpacity: function(element) { + return $(element).getStyle('opacity'); + }, + + setStyle: function(element, styles) { + element = $(element); + var elementStyle = element.style, match; + if (Object.isString(styles)) { + element.style.cssText += ';' + styles; + return styles.include('opacity') ? + element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]) : element; + } + for (var property in styles) + if (property == 'opacity') element.setOpacity(styles[property]); + else + elementStyle[(property == 'float' || property == 'cssFloat') ? + (Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') : + property] = styles[property]; + + return element; + }, + + setOpacity: function(element, value) { + element = $(element); + element.style.opacity = (value == 1 || value === '') ? '' : + (value < 0.00001) ? 0 : value; + return element; + }, + + getDimensions: function(element) { + element = $(element); + var display = element.getStyle('display'); + if (display != 'none' && display != null) // Safari bug + return {width: element.offsetWidth, height: element.offsetHeight}; + + // All *Width and *Height properties give 0 on elements with display none, + // so enable the element temporarily + var els = element.style; + var originalVisibility = els.visibility; + var originalPosition = els.position; + var originalDisplay = els.display; + els.visibility = 'hidden'; + els.position = 'absolute'; + els.display = 'block'; + var originalWidth = element.clientWidth; + var originalHeight = element.clientHeight; + els.display = originalDisplay; + els.position = originalPosition; + els.visibility = originalVisibility; + return {width: originalWidth, height: originalHeight}; + }, + + makePositioned: function(element) { + element = $(element); + var pos = Element.getStyle(element, 'position'); + if (pos == 'static' || !pos) { + element._madePositioned = true; + element.style.position = 'relative'; + // Opera returns the offset relative to the positioning context, when an + // element is position relative but top and left have not been defined + if (Prototype.Browser.Opera) { + element.style.top = 0; + element.style.left = 0; + } + } + return element; + }, + + undoPositioned: function(element) { + element = $(element); + if (element._madePositioned) { + element._madePositioned = undefined; + element.style.position = + element.style.top = + element.style.left = + element.style.bottom = + element.style.right = ''; + } + return element; + }, + + makeClipping: function(element) { + element = $(element); + if (element._overflow) return element; + element._overflow = Element.getStyle(element, 'overflow') || 'auto'; + if (element._overflow !== 'hidden') + element.style.overflow = 'hidden'; + return element; + }, + + undoClipping: function(element) { + element = $(element); + if (!element._overflow) return element; + element.style.overflow = element._overflow == 'auto' ? '' : element._overflow; + element._overflow = null; + return element; + }, + + cumulativeOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + element = element.offsetParent; + } while (element); + return Element._returnOffset(valueL, valueT); + }, + + positionedOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + element = element.offsetParent; + if (element) { + if (element.tagName.toUpperCase() == 'BODY') break; + var p = Element.getStyle(element, 'position'); + if (p !== 'static') break; + } + } while (element); + return Element._returnOffset(valueL, valueT); + }, + + absolutize: function(element) { + element = $(element); + if (element.getStyle('position') == 'absolute') return element; + // Position.prepare(); // To be done manually by Scripty when it needs it. + + var offsets = element.positionedOffset(); + var top = offsets[1]; + var left = offsets[0]; + var width = element.clientWidth; + var height = element.clientHeight; + + element._originalLeft = left - parseFloat(element.style.left || 0); + element._originalTop = top - parseFloat(element.style.top || 0); + element._originalWidth = element.style.width; + element._originalHeight = element.style.height; + + element.style.position = 'absolute'; + element.style.top = top + 'px'; + element.style.left = left + 'px'; + element.style.width = width + 'px'; + element.style.height = height + 'px'; + return element; + }, + + relativize: function(element) { + element = $(element); + if (element.getStyle('position') == 'relative') return element; + // Position.prepare(); // To be done manually by Scripty when it needs it. + + element.style.position = 'relative'; + var top = parseFloat(element.style.top || 0) - (element._originalTop || 0); + var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0); + + element.style.top = top + 'px'; + element.style.left = left + 'px'; + element.style.height = element._originalHeight; + element.style.width = element._originalWidth; + return element; + }, + + cumulativeScrollOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.scrollTop || 0; + valueL += element.scrollLeft || 0; + element = element.parentNode; + } while (element); + return Element._returnOffset(valueL, valueT); + }, + + getOffsetParent: function(element) { + if (element.offsetParent) return $(element.offsetParent); + if (element == document.body) return $(element); + + while ((element = element.parentNode) && element != document.body) + if (Element.getStyle(element, 'position') != 'static') + return $(element); + + return $(document.body); + }, + + viewportOffset: function(forElement) { + var valueT = 0, valueL = 0; + + var element = forElement; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + + // Safari fix + if (element.offsetParent == document.body && + Element.getStyle(element, 'position') == 'absolute') break; + + } while (element = element.offsetParent); + + element = forElement; + do { + if (!Prototype.Browser.Opera || (element.tagName && (element.tagName.toUpperCase() == 'BODY'))) { + valueT -= element.scrollTop || 0; + valueL -= element.scrollLeft || 0; + } + } while (element = element.parentNode); + + return Element._returnOffset(valueL, valueT); + }, + + clonePosition: function(element, source) { + var options = Object.extend({ + setLeft: true, + setTop: true, + setWidth: true, + setHeight: true, + offsetTop: 0, + offsetLeft: 0 + }, arguments[2] || { }); + + // find page position of source + source = $(source); + var p = source.viewportOffset(); + + // find coordinate system to use + element = $(element); + var delta = [0, 0]; + var parent = null; + // delta [0,0] will do fine with position: fixed elements, + // position:absolute needs offsetParent deltas + if (Element.getStyle(element, 'position') == 'absolute') { + parent = element.getOffsetParent(); + delta = parent.viewportOffset(); + } + + // correct by body offsets (fixes Safari) + if (parent == document.body) { + delta[0] -= document.body.offsetLeft; + delta[1] -= document.body.offsetTop; + } + + // set position + if (options.setLeft) element.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px'; + if (options.setTop) element.style.top = (p[1] - delta[1] + options.offsetTop) + 'px'; + if (options.setWidth) element.style.width = source.offsetWidth + 'px'; + if (options.setHeight) element.style.height = source.offsetHeight + 'px'; + return element; + } +}; + +Element.Methods.identify.counter = 1; + +Object.extend(Element.Methods, { + getElementsBySelector: Element.Methods.select, + childElements: Element.Methods.immediateDescendants +}); + +Element._attributeTranslations = { + write: { + names: { + className: 'class', + htmlFor: 'for' + }, + values: { } + } +}; + +if (Prototype.Browser.Opera) { + Element.Methods.getStyle = Element.Methods.getStyle.wrap( + function(proceed, element, style) { + switch (style) { + case 'left': case 'top': case 'right': case 'bottom': + if (proceed(element, 'position') === 'static') return null; + case 'height': case 'width': + // returns '0px' for hidden elements; we want it to return null + if (!Element.visible(element)) return null; + + // returns the border-box dimensions rather than the content-box + // dimensions, so we subtract padding and borders from the value + var dim = parseInt(proceed(element, style), 10); + + if (dim !== element['offset' + style.capitalize()]) + return dim + 'px'; + + var properties; + if (style === 'height') { + properties = ['border-top-width', 'padding-top', + 'padding-bottom', 'border-bottom-width']; + } + else { + properties = ['border-left-width', 'padding-left', + 'padding-right', 'border-right-width']; + } + return properties.inject(dim, function(memo, property) { + var val = proceed(element, property); + return val === null ? memo : memo - parseInt(val, 10); + }) + 'px'; + default: return proceed(element, style); + } + } + ); + + Element.Methods.readAttribute = Element.Methods.readAttribute.wrap( + function(proceed, element, attribute) { + if (attribute === 'title') return element.title; + return proceed(element, attribute); + } + ); +} + +else if (Prototype.Browser.IE) { + // IE doesn't report offsets correctly for static elements, so we change them + // to "relative" to get the values, then change them back. + Element.Methods.getOffsetParent = Element.Methods.getOffsetParent.wrap( + function(proceed, element) { + element = $(element); + // IE throws an error if element is not in document + try { element.offsetParent } + catch(e) { return $(document.body) } + var position = element.getStyle('position'); + if (position !== 'static') return proceed(element); + element.setStyle({ position: 'relative' }); + var value = proceed(element); + element.setStyle({ position: position }); + return value; + } + ); + + $w('positionedOffset viewportOffset').each(function(method) { + Element.Methods[method] = Element.Methods[method].wrap( + function(proceed, element) { + element = $(element); + try { element.offsetParent } + catch(e) { return Element._returnOffset(0,0) } + var position = element.getStyle('position'); + if (position !== 'static') return proceed(element); + // Trigger hasLayout on the offset parent so that IE6 reports + // accurate offsetTop and offsetLeft values for position: fixed. + var offsetParent = element.getOffsetParent(); + if (offsetParent && offsetParent.getStyle('position') === 'fixed') + offsetParent.setStyle({ zoom: 1 }); + element.setStyle({ position: 'relative' }); + var value = proceed(element); + element.setStyle({ position: position }); + return value; + } + ); + }); + + Element.Methods.cumulativeOffset = Element.Methods.cumulativeOffset.wrap( + function(proceed, element) { + try { element.offsetParent } + catch(e) { return Element._returnOffset(0,0) } + return proceed(element); + } + ); + + Element.Methods.getStyle = function(element, style) { + element = $(element); + style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize(); + var value = element.style[style]; + if (!value && element.currentStyle) value = element.currentStyle[style]; + + if (style == 'opacity') { + if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/)) + if (value[1]) return parseFloat(value[1]) / 100; + return 1.0; + } + + if (value == 'auto') { + if ((style == 'width' || style == 'height') && (element.getStyle('display') != 'none')) + return element['offset' + style.capitalize()] + 'px'; + return null; + } + return value; + }; + + Element.Methods.setOpacity = function(element, value) { + function stripAlpha(filter){ + return filter.replace(/alpha\([^\)]*\)/gi,''); + } + element = $(element); + var currentStyle = element.currentStyle; + if ((currentStyle && !currentStyle.hasLayout) || + (!currentStyle && element.style.zoom == 'normal')) + element.style.zoom = 1; + + var filter = element.getStyle('filter'), style = element.style; + if (value == 1 || value === '') { + (filter = stripAlpha(filter)) ? + style.filter = filter : style.removeAttribute('filter'); + return element; + } else if (value < 0.00001) value = 0; + style.filter = stripAlpha(filter) + + 'alpha(opacity=' + (value * 100) + ')'; + return element; + }; + + Element._attributeTranslations = { + read: { + names: { + 'class': 'className', + 'for': 'htmlFor' + }, + values: { + _getAttr: function(element, attribute) { + return element.getAttribute(attribute, 2); + }, + _getAttrNode: function(element, attribute) { + var node = element.getAttributeNode(attribute); + return node ? node.value : ""; + }, + _getEv: function(element, attribute) { + attribute = element.getAttribute(attribute); + return attribute ? attribute.toString().slice(23, -2) : null; + }, + _flag: function(element, attribute) { + return $(element).hasAttribute(attribute) ? attribute : null; + }, + style: function(element) { + return element.style.cssText.toLowerCase(); + }, + title: function(element) { + return element.title; + } + } + } + }; + + Element._attributeTranslations.write = { + names: Object.extend({ + cellpadding: 'cellPadding', + cellspacing: 'cellSpacing' + }, Element._attributeTranslations.read.names), + values: { + checked: function(element, value) { + element.checked = !!value; + }, + + style: function(element, value) { + element.style.cssText = value ? value : ''; + } + } + }; + + Element._attributeTranslations.has = {}; + + $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' + + 'encType maxLength readOnly longDesc frameBorder').each(function(attr) { + Element._attributeTranslations.write.names[attr.toLowerCase()] = attr; + Element._attributeTranslations.has[attr.toLowerCase()] = attr; + }); + + (function(v) { + Object.extend(v, { + href: v._getAttr, + src: v._getAttr, + type: v._getAttr, + action: v._getAttrNode, + disabled: v._flag, + checked: v._flag, + readonly: v._flag, + multiple: v._flag, + onload: v._getEv, + onunload: v._getEv, + onclick: v._getEv, + ondblclick: v._getEv, + onmousedown: v._getEv, + onmouseup: v._getEv, + onmouseover: v._getEv, + onmousemove: v._getEv, + onmouseout: v._getEv, + onfocus: v._getEv, + onblur: v._getEv, + onkeypress: v._getEv, + onkeydown: v._getEv, + onkeyup: v._getEv, + onsubmit: v._getEv, + onreset: v._getEv, + onselect: v._getEv, + onchange: v._getEv + }); + })(Element._attributeTranslations.read.values); +} + +else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) { + Element.Methods.setOpacity = function(element, value) { + element = $(element); + element.style.opacity = (value == 1) ? 0.999999 : + (value === '') ? '' : (value < 0.00001) ? 0 : value; + return element; + }; +} + +else if (Prototype.Browser.WebKit) { + Element.Methods.setOpacity = function(element, value) { + element = $(element); + element.style.opacity = (value == 1 || value === '') ? '' : + (value < 0.00001) ? 0 : value; + + if (value == 1) + if(element.tagName.toUpperCase() == 'IMG' && element.width) { + element.width++; element.width--; + } else try { + var n = document.createTextNode(' '); + element.appendChild(n); + element.removeChild(n); + } catch (e) { } + + return element; + }; + + // Safari returns margins on body which is incorrect if the child is absolutely + // positioned. For performance reasons, redefine Element#cumulativeOffset for + // KHTML/WebKit only. + Element.Methods.cumulativeOffset = function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + if (element.offsetParent == document.body) + if (Element.getStyle(element, 'position') == 'absolute') break; + + element = element.offsetParent; + } while (element); + + return Element._returnOffset(valueL, valueT); + }; +} + +if (Prototype.Browser.IE || Prototype.Browser.Opera) { + // IE and Opera are missing .innerHTML support for TABLE-related and SELECT elements + Element.Methods.update = function(element, content) { + element = $(element); + + if (content && content.toElement) content = content.toElement(); + if (Object.isElement(content)) return element.update().insert(content); + + content = Object.toHTML(content); + var tagName = element.tagName.toUpperCase(); + + if (tagName in Element._insertionTranslations.tags) { + $A(element.childNodes).each(function(node) { element.removeChild(node) }); + Element._getContentFromAnonymousElement(tagName, content.stripScripts()) + .each(function(node) { element.appendChild(node) }); + } + else element.innerHTML = content.stripScripts(); + + content.evalScripts.bind(content).defer(); + return element; + }; +} + +if ('outerHTML' in document.createElement('div')) { + Element.Methods.replace = function(element, content) { + element = $(element); + + if (content && content.toElement) content = content.toElement(); + if (Object.isElement(content)) { + element.parentNode.replaceChild(content, element); + return element; + } + + content = Object.toHTML(content); + var parent = element.parentNode, tagName = parent.tagName.toUpperCase(); + + if (Element._insertionTranslations.tags[tagName]) { + var nextSibling = element.next(); + var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts()); + parent.removeChild(element); + if (nextSibling) + fragments.each(function(node) { parent.insertBefore(node, nextSibling) }); + else + fragments.each(function(node) { parent.appendChild(node) }); + } + else element.outerHTML = content.stripScripts(); + + content.evalScripts.bind(content).defer(); + return element; + }; +} + +Element._returnOffset = function(l, t) { + var result = [l, t]; + result.left = l; + result.top = t; + return result; +}; + +Element._getContentFromAnonymousElement = function(tagName, html) { + var div = new Element('div'), t = Element._insertionTranslations.tags[tagName]; + if (t) { + div.innerHTML = t[0] + html + t[1]; + t[2].times(function() { div = div.firstChild }); + } else div.innerHTML = html; + return $A(div.childNodes); +}; + +Element._insertionTranslations = { + before: function(element, node) { + element.parentNode.insertBefore(node, element); + }, + top: function(element, node) { + element.insertBefore(node, element.firstChild); + }, + bottom: function(element, node) { + element.appendChild(node); + }, + after: function(element, node) { + element.parentNode.insertBefore(node, element.nextSibling); + }, + tags: { + TABLE: ['', '
    ', 1], + TBODY: ['', '
    ', 2], + TR: ['', '
    ', 3], + TD: ['
    ', '
    ', 4], + SELECT: ['', 1] + } +}; + +(function() { + Object.extend(this.tags, { + THEAD: this.tags.TBODY, + TFOOT: this.tags.TBODY, + TH: this.tags.TD + }); +}).call(Element._insertionTranslations); + +Element.Methods.Simulated = { + hasAttribute: function(element, attribute) { + attribute = Element._attributeTranslations.has[attribute] || attribute; + var node = $(element).getAttributeNode(attribute); + return !!(node && node.specified); + } +}; + +Element.Methods.ByTag = { }; + +Object.extend(Element, Element.Methods); + +if (!Prototype.BrowserFeatures.ElementExtensions && + document.createElement('div')['__proto__']) { + window.HTMLElement = { }; + window.HTMLElement.prototype = document.createElement('div')['__proto__']; + Prototype.BrowserFeatures.ElementExtensions = true; +} + +Element.extend = (function() { + if (Prototype.BrowserFeatures.SpecificElementExtensions) + return Prototype.K; + + var Methods = { }, ByTag = Element.Methods.ByTag; + + var extend = Object.extend(function(element) { + if (!element || element._extendedByPrototype || + element.nodeType != 1 || element == window) return element; + + var methods = Object.clone(Methods), + tagName = element.tagName.toUpperCase(), property, value; + + // extend methods for specific tags + if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]); + + for (property in methods) { + value = methods[property]; + if (Object.isFunction(value) && !(property in element)) + element[property] = value.methodize(); + } + + element._extendedByPrototype = Prototype.emptyFunction; + return element; + + }, { + refresh: function() { + // extend methods for all tags (Safari doesn't need this) + if (!Prototype.BrowserFeatures.ElementExtensions) { + Object.extend(Methods, Element.Methods); + Object.extend(Methods, Element.Methods.Simulated); + } + } + }); + + extend.refresh(); + return extend; +})(); + +Element.hasAttribute = function(element, attribute) { + if (element.hasAttribute) return element.hasAttribute(attribute); + return Element.Methods.Simulated.hasAttribute(element, attribute); +}; + +Element.addMethods = function(methods) { + var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag; + + if (!methods) { + Object.extend(Form, Form.Methods); + Object.extend(Form.Element, Form.Element.Methods); + Object.extend(Element.Methods.ByTag, { + "FORM": Object.clone(Form.Methods), + "INPUT": Object.clone(Form.Element.Methods), + "SELECT": Object.clone(Form.Element.Methods), + "TEXTAREA": Object.clone(Form.Element.Methods) + }); + } + + if (arguments.length == 2) { + var tagName = methods; + methods = arguments[1]; + } + + if (!tagName) Object.extend(Element.Methods, methods || { }); + else { + if (Object.isArray(tagName)) tagName.each(extend); + else extend(tagName); + } + + function extend(tagName) { + tagName = tagName.toUpperCase(); + if (!Element.Methods.ByTag[tagName]) + Element.Methods.ByTag[tagName] = { }; + Object.extend(Element.Methods.ByTag[tagName], methods); + } + + function copy(methods, destination, onlyIfAbsent) { + onlyIfAbsent = onlyIfAbsent || false; + for (var property in methods) { + var value = methods[property]; + if (!Object.isFunction(value)) continue; + if (!onlyIfAbsent || !(property in destination)) + destination[property] = value.methodize(); + } + } + + function findDOMClass(tagName) { + var klass; + var trans = { + "OPTGROUP": "OptGroup", "TEXTAREA": "TextArea", "P": "Paragraph", + "FIELDSET": "FieldSet", "UL": "UList", "OL": "OList", "DL": "DList", + "DIR": "Directory", "H1": "Heading", "H2": "Heading", "H3": "Heading", + "H4": "Heading", "H5": "Heading", "H6": "Heading", "Q": "Quote", + "INS": "Mod", "DEL": "Mod", "A": "Anchor", "IMG": "Image", "CAPTION": + "TableCaption", "COL": "TableCol", "COLGROUP": "TableCol", "THEAD": + "TableSection", "TFOOT": "TableSection", "TBODY": "TableSection", "TR": + "TableRow", "TH": "TableCell", "TD": "TableCell", "FRAMESET": + "FrameSet", "IFRAME": "IFrame" + }; + if (trans[tagName]) klass = 'HTML' + trans[tagName] + 'Element'; + if (window[klass]) return window[klass]; + klass = 'HTML' + tagName + 'Element'; + if (window[klass]) return window[klass]; + klass = 'HTML' + tagName.capitalize() + 'Element'; + if (window[klass]) return window[klass]; + + window[klass] = { }; + window[klass].prototype = document.createElement(tagName)['__proto__']; + return window[klass]; + } + + if (F.ElementExtensions) { + copy(Element.Methods, HTMLElement.prototype); + copy(Element.Methods.Simulated, HTMLElement.prototype, true); + } + + if (F.SpecificElementExtensions) { + for (var tag in Element.Methods.ByTag) { + var klass = findDOMClass(tag); + if (Object.isUndefined(klass)) continue; + copy(T[tag], klass.prototype); + } + } + + Object.extend(Element, Element.Methods); + delete Element.ByTag; + + if (Element.extend.refresh) Element.extend.refresh(); + Element.cache = { }; +}; + +document.viewport = { + getDimensions: function() { + var dimensions = { }, B = Prototype.Browser; + $w('width height').each(function(d) { + var D = d.capitalize(); + if (B.WebKit && !document.evaluate) { + // Safari <3.0 needs self.innerWidth/Height + dimensions[d] = self['inner' + D]; + } else if (B.Opera && parseFloat(window.opera.version()) < 9.5) { + // Opera <9.5 needs document.body.clientWidth/Height + dimensions[d] = document.body['client' + D] + } else { + dimensions[d] = document.documentElement['client' + D]; + } + }); + return dimensions; + }, + + getWidth: function() { + return this.getDimensions().width; + }, + + getHeight: function() { + return this.getDimensions().height; + }, + + getScrollOffsets: function() { + return Element._returnOffset( + window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft, + window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop); + } +}; +/* Portions of the Selector class are derived from Jack Slocum's DomQuery, + * part of YUI-Ext version 0.40, distributed under the terms of an MIT-style + * license. Please see http://www.yui-ext.com/ for more information. */ + +var Selector = Class.create({ + initialize: function(expression) { + this.expression = expression.strip(); + + if (this.shouldUseSelectorsAPI()) { + this.mode = 'selectorsAPI'; + } else if (this.shouldUseXPath()) { + this.mode = 'xpath'; + this.compileXPathMatcher(); + } else { + this.mode = "normal"; + this.compileMatcher(); + } + + }, + + shouldUseXPath: function() { + if (!Prototype.BrowserFeatures.XPath) return false; + + var e = this.expression; + + // Safari 3 chokes on :*-of-type and :empty + if (Prototype.Browser.WebKit && + (e.include("-of-type") || e.include(":empty"))) + return false; + + // XPath can't do namespaced attributes, nor can it read + // the "checked" property from DOM nodes + if ((/(\[[\w-]*?:|:checked)/).test(e)) + return false; + + return true; + }, + + shouldUseSelectorsAPI: function() { + if (!Prototype.BrowserFeatures.SelectorsAPI) return false; + + if (!Selector._div) Selector._div = new Element('div'); + + // Make sure the browser treats the selector as valid. Test on an + // isolated element to minimize cost of this check. + try { + Selector._div.querySelector(this.expression); + } catch(e) { + return false; + } + + return true; + }, + + compileMatcher: function() { + var e = this.expression, ps = Selector.patterns, h = Selector.handlers, + c = Selector.criteria, le, p, m; + + if (Selector._cache[e]) { + this.matcher = Selector._cache[e]; + return; + } + + this.matcher = ["this.matcher = function(root) {", + "var r = root, h = Selector.handlers, c = false, n;"]; + + while (e && le != e && (/\S/).test(e)) { + le = e; + for (var i in ps) { + p = ps[i]; + if (m = e.match(p)) { + this.matcher.push(Object.isFunction(c[i]) ? c[i](m) : + new Template(c[i]).evaluate(m)); + e = e.replace(m[0], ''); + break; + } + } + } + + this.matcher.push("return h.unique(n);\n}"); + eval(this.matcher.join('\n')); + Selector._cache[this.expression] = this.matcher; + }, + + compileXPathMatcher: function() { + var e = this.expression, ps = Selector.patterns, + x = Selector.xpath, le, m; + + if (Selector._cache[e]) { + this.xpath = Selector._cache[e]; return; + } + + this.matcher = ['.//*']; + while (e && le != e && (/\S/).test(e)) { + le = e; + for (var i in ps) { + if (m = e.match(ps[i])) { + this.matcher.push(Object.isFunction(x[i]) ? x[i](m) : + new Template(x[i]).evaluate(m)); + e = e.replace(m[0], ''); + break; + } + } + } + + this.xpath = this.matcher.join(''); + Selector._cache[this.expression] = this.xpath; + }, + + findElements: function(root) { + root = root || document; + var e = this.expression, results; + + switch (this.mode) { + case 'selectorsAPI': + // querySelectorAll queries document-wide, then filters to descendants + // of the context element. That's not what we want. + // Add an explicit context to the selector if necessary. + if (root !== document) { + var oldId = root.id, id = $(root).identify(); + e = "#" + id + " " + e; + } + + results = $A(root.querySelectorAll(e)).map(Element.extend); + root.id = oldId; + + return results; + case 'xpath': + return document._getElementsByXPath(this.xpath, root); + default: + return this.matcher(root); + } + }, + + match: function(element) { + this.tokens = []; + + var e = this.expression, ps = Selector.patterns, as = Selector.assertions; + var le, p, m; + + while (e && le !== e && (/\S/).test(e)) { + le = e; + for (var i in ps) { + p = ps[i]; + if (m = e.match(p)) { + // use the Selector.assertions methods unless the selector + // is too complex. + if (as[i]) { + this.tokens.push([i, Object.clone(m)]); + e = e.replace(m[0], ''); + } else { + // reluctantly do a document-wide search + // and look for a match in the array + return this.findElements(document).include(element); + } + } + } + } + + var match = true, name, matches; + for (var i = 0, token; token = this.tokens[i]; i++) { + name = token[0], matches = token[1]; + if (!Selector.assertions[name](element, matches)) { + match = false; break; + } + } + + return match; + }, + + toString: function() { + return this.expression; + }, + + inspect: function() { + return "#"; + } +}); + +Object.extend(Selector, { + _cache: { }, + + xpath: { + descendant: "//*", + child: "/*", + adjacent: "/following-sibling::*[1]", + laterSibling: '/following-sibling::*', + tagName: function(m) { + if (m[1] == '*') return ''; + return "[local-name()='" + m[1].toLowerCase() + + "' or local-name()='" + m[1].toUpperCase() + "']"; + }, + className: "[contains(concat(' ', @class, ' '), ' #{1} ')]", + id: "[@id='#{1}']", + attrPresence: function(m) { + m[1] = m[1].toLowerCase(); + return new Template("[@#{1}]").evaluate(m); + }, + attr: function(m) { + m[1] = m[1].toLowerCase(); + m[3] = m[5] || m[6]; + return new Template(Selector.xpath.operators[m[2]]).evaluate(m); + }, + pseudo: function(m) { + var h = Selector.xpath.pseudos[m[1]]; + if (!h) return ''; + if (Object.isFunction(h)) return h(m); + return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m); + }, + operators: { + '=': "[@#{1}='#{3}']", + '!=': "[@#{1}!='#{3}']", + '^=': "[starts-with(@#{1}, '#{3}')]", + '$=': "[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']", + '*=': "[contains(@#{1}, '#{3}')]", + '~=': "[contains(concat(' ', @#{1}, ' '), ' #{3} ')]", + '|=': "[contains(concat('-', @#{1}, '-'), '-#{3}-')]" + }, + pseudos: { + 'first-child': '[not(preceding-sibling::*)]', + 'last-child': '[not(following-sibling::*)]', + 'only-child': '[not(preceding-sibling::* or following-sibling::*)]', + 'empty': "[count(*) = 0 and (count(text()) = 0)]", + 'checked': "[@checked]", + 'disabled': "[(@disabled) and (@type!='hidden')]", + 'enabled': "[not(@disabled) and (@type!='hidden')]", + 'not': function(m) { + var e = m[6], p = Selector.patterns, + x = Selector.xpath, le, v; + + var exclusion = []; + while (e && le != e && (/\S/).test(e)) { + le = e; + for (var i in p) { + if (m = e.match(p[i])) { + v = Object.isFunction(x[i]) ? x[i](m) : new Template(x[i]).evaluate(m); + exclusion.push("(" + v.substring(1, v.length - 1) + ")"); + e = e.replace(m[0], ''); + break; + } + } + } + return "[not(" + exclusion.join(" and ") + ")]"; + }, + 'nth-child': function(m) { + return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m); + }, + 'nth-last-child': function(m) { + return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m); + }, + 'nth-of-type': function(m) { + return Selector.xpath.pseudos.nth("position() ", m); + }, + 'nth-last-of-type': function(m) { + return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m); + }, + 'first-of-type': function(m) { + m[6] = "1"; return Selector.xpath.pseudos['nth-of-type'](m); + }, + 'last-of-type': function(m) { + m[6] = "1"; return Selector.xpath.pseudos['nth-last-of-type'](m); + }, + 'only-of-type': function(m) { + var p = Selector.xpath.pseudos; return p['first-of-type'](m) + p['last-of-type'](m); + }, + nth: function(fragment, m) { + var mm, formula = m[6], predicate; + if (formula == 'even') formula = '2n+0'; + if (formula == 'odd') formula = '2n+1'; + if (mm = formula.match(/^(\d+)$/)) // digit only + return '[' + fragment + "= " + mm[1] + ']'; + if (mm = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b + if (mm[1] == "-") mm[1] = -1; + var a = mm[1] ? Number(mm[1]) : 1; + var b = mm[2] ? Number(mm[2]) : 0; + predicate = "[((#{fragment} - #{b}) mod #{a} = 0) and " + + "((#{fragment} - #{b}) div #{a} >= 0)]"; + return new Template(predicate).evaluate({ + fragment: fragment, a: a, b: b }); + } + } + } + }, + + criteria: { + tagName: 'n = h.tagName(n, r, "#{1}", c); c = false;', + className: 'n = h.className(n, r, "#{1}", c); c = false;', + id: 'n = h.id(n, r, "#{1}", c); c = false;', + attrPresence: 'n = h.attrPresence(n, r, "#{1}", c); c = false;', + attr: function(m) { + m[3] = (m[5] || m[6]); + return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m); + }, + pseudo: function(m) { + if (m[6]) m[6] = m[6].replace(/"/g, '\\"'); + return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m); + }, + descendant: 'c = "descendant";', + child: 'c = "child";', + adjacent: 'c = "adjacent";', + laterSibling: 'c = "laterSibling";' + }, + + patterns: { + // combinators must be listed first + // (and descendant needs to be last combinator) + laterSibling: /^\s*~\s*/, + child: /^\s*>\s*/, + adjacent: /^\s*\+\s*/, + descendant: /^\s/, + + // selectors follow + tagName: /^\s*(\*|[\w\-]+)(\b|$)?/, + id: /^#([\w\-\*]+)(\b|$)/, + className: /^\.([\w\-\*]+)(\b|$)/, + pseudo: +/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/, + attrPresence: /^\[((?:[\w]+:)?[\w]+)\]/, + attr: /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/ + }, + + // for Selector.match and Element#match + assertions: { + tagName: function(element, matches) { + return matches[1].toUpperCase() == element.tagName.toUpperCase(); + }, + + className: function(element, matches) { + return Element.hasClassName(element, matches[1]); + }, + + id: function(element, matches) { + return element.id === matches[1]; + }, + + attrPresence: function(element, matches) { + return Element.hasAttribute(element, matches[1]); + }, + + attr: function(element, matches) { + var nodeValue = Element.readAttribute(element, matches[1]); + return nodeValue && Selector.operators[matches[2]](nodeValue, matches[5] || matches[6]); + } + }, + + handlers: { + // UTILITY FUNCTIONS + // joins two collections + concat: function(a, b) { + for (var i = 0, node; node = b[i]; i++) + a.push(node); + return a; + }, + + // marks an array of nodes for counting + mark: function(nodes) { + var _true = Prototype.emptyFunction; + for (var i = 0, node; node = nodes[i]; i++) + node._countedByPrototype = _true; + return nodes; + }, + + unmark: function(nodes) { + for (var i = 0, node; node = nodes[i]; i++) + node._countedByPrototype = undefined; + return nodes; + }, + + // mark each child node with its position (for nth calls) + // "ofType" flag indicates whether we're indexing for nth-of-type + // rather than nth-child + index: function(parentNode, reverse, ofType) { + parentNode._countedByPrototype = Prototype.emptyFunction; + if (reverse) { + for (var nodes = parentNode.childNodes, i = nodes.length - 1, j = 1; i >= 0; i--) { + var node = nodes[i]; + if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++; + } + } else { + for (var i = 0, j = 1, nodes = parentNode.childNodes; node = nodes[i]; i++) + if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++; + } + }, + + // filters out duplicates and extends all nodes + unique: function(nodes) { + if (nodes.length == 0) return nodes; + var results = [], n; + for (var i = 0, l = nodes.length; i < l; i++) + if (!(n = nodes[i])._countedByPrototype) { + n._countedByPrototype = Prototype.emptyFunction; + results.push(Element.extend(n)); + } + return Selector.handlers.unmark(results); + }, + + // COMBINATOR FUNCTIONS + descendant: function(nodes) { + var h = Selector.handlers; + for (var i = 0, results = [], node; node = nodes[i]; i++) + h.concat(results, node.getElementsByTagName('*')); + return results; + }, + + child: function(nodes) { + var h = Selector.handlers; + for (var i = 0, results = [], node; node = nodes[i]; i++) { + for (var j = 0, child; child = node.childNodes[j]; j++) + if (child.nodeType == 1 && child.tagName != '!') results.push(child); + } + return results; + }, + + adjacent: function(nodes) { + for (var i = 0, results = [], node; node = nodes[i]; i++) { + var next = this.nextElementSibling(node); + if (next) results.push(next); + } + return results; + }, + + laterSibling: function(nodes) { + var h = Selector.handlers; + for (var i = 0, results = [], node; node = nodes[i]; i++) + h.concat(results, Element.nextSiblings(node)); + return results; + }, + + nextElementSibling: function(node) { + while (node = node.nextSibling) + if (node.nodeType == 1) return node; + return null; + }, + + previousElementSibling: function(node) { + while (node = node.previousSibling) + if (node.nodeType == 1) return node; + return null; + }, + + // TOKEN FUNCTIONS + tagName: function(nodes, root, tagName, combinator) { + var uTagName = tagName.toUpperCase(); + var results = [], h = Selector.handlers; + if (nodes) { + if (combinator) { + // fastlane for ordinary descendant combinators + if (combinator == "descendant") { + for (var i = 0, node; node = nodes[i]; i++) + h.concat(results, node.getElementsByTagName(tagName)); + return results; + } else nodes = this[combinator](nodes); + if (tagName == "*") return nodes; + } + for (var i = 0, node; node = nodes[i]; i++) + if (node.tagName.toUpperCase() === uTagName) results.push(node); + return results; + } else return root.getElementsByTagName(tagName); + }, + + id: function(nodes, root, id, combinator) { + var targetNode = $(id), h = Selector.handlers; + if (!targetNode) return []; + if (!nodes && root == document) return [targetNode]; + if (nodes) { + if (combinator) { + if (combinator == 'child') { + for (var i = 0, node; node = nodes[i]; i++) + if (targetNode.parentNode == node) return [targetNode]; + } else if (combinator == 'descendant') { + for (var i = 0, node; node = nodes[i]; i++) + if (Element.descendantOf(targetNode, node)) return [targetNode]; + } else if (combinator == 'adjacent') { + for (var i = 0, node; node = nodes[i]; i++) + if (Selector.handlers.previousElementSibling(targetNode) == node) + return [targetNode]; + } else nodes = h[combinator](nodes); + } + for (var i = 0, node; node = nodes[i]; i++) + if (node == targetNode) return [targetNode]; + return []; + } + return (targetNode && Element.descendantOf(targetNode, root)) ? [targetNode] : []; + }, + + className: function(nodes, root, className, combinator) { + if (nodes && combinator) nodes = this[combinator](nodes); + return Selector.handlers.byClassName(nodes, root, className); + }, + + byClassName: function(nodes, root, className) { + if (!nodes) nodes = Selector.handlers.descendant([root]); + var needle = ' ' + className + ' '; + for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) { + nodeClassName = node.className; + if (nodeClassName.length == 0) continue; + if (nodeClassName == className || (' ' + nodeClassName + ' ').include(needle)) + results.push(node); + } + return results; + }, + + attrPresence: function(nodes, root, attr, combinator) { + if (!nodes) nodes = root.getElementsByTagName("*"); + if (nodes && combinator) nodes = this[combinator](nodes); + var results = []; + for (var i = 0, node; node = nodes[i]; i++) + if (Element.hasAttribute(node, attr)) results.push(node); + return results; + }, + + attr: function(nodes, root, attr, value, operator, combinator) { + if (!nodes) nodes = root.getElementsByTagName("*"); + if (nodes && combinator) nodes = this[combinator](nodes); + var handler = Selector.operators[operator], results = []; + for (var i = 0, node; node = nodes[i]; i++) { + var nodeValue = Element.readAttribute(node, attr); + if (nodeValue === null) continue; + if (handler(nodeValue, value)) results.push(node); + } + return results; + }, + + pseudo: function(nodes, name, value, root, combinator) { + if (nodes && combinator) nodes = this[combinator](nodes); + if (!nodes) nodes = root.getElementsByTagName("*"); + return Selector.pseudos[name](nodes, value, root); + } + }, + + pseudos: { + 'first-child': function(nodes, value, root) { + for (var i = 0, results = [], node; node = nodes[i]; i++) { + if (Selector.handlers.previousElementSibling(node)) continue; + results.push(node); + } + return results; + }, + 'last-child': function(nodes, value, root) { + for (var i = 0, results = [], node; node = nodes[i]; i++) { + if (Selector.handlers.nextElementSibling(node)) continue; + results.push(node); + } + return results; + }, + 'only-child': function(nodes, value, root) { + var h = Selector.handlers; + for (var i = 0, results = [], node; node = nodes[i]; i++) + if (!h.previousElementSibling(node) && !h.nextElementSibling(node)) + results.push(node); + return results; + }, + 'nth-child': function(nodes, formula, root) { + return Selector.pseudos.nth(nodes, formula, root); + }, + 'nth-last-child': function(nodes, formula, root) { + return Selector.pseudos.nth(nodes, formula, root, true); + }, + 'nth-of-type': function(nodes, formula, root) { + return Selector.pseudos.nth(nodes, formula, root, false, true); + }, + 'nth-last-of-type': function(nodes, formula, root) { + return Selector.pseudos.nth(nodes, formula, root, true, true); + }, + 'first-of-type': function(nodes, formula, root) { + return Selector.pseudos.nth(nodes, "1", root, false, true); + }, + 'last-of-type': function(nodes, formula, root) { + return Selector.pseudos.nth(nodes, "1", root, true, true); + }, + 'only-of-type': function(nodes, formula, root) { + var p = Selector.pseudos; + return p['last-of-type'](p['first-of-type'](nodes, formula, root), formula, root); + }, + + // handles the an+b logic + getIndices: function(a, b, total) { + if (a == 0) return b > 0 ? [b] : []; + return $R(1, total).inject([], function(memo, i) { + if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i); + return memo; + }); + }, + + // handles nth(-last)-child, nth(-last)-of-type, and (first|last)-of-type + nth: function(nodes, formula, root, reverse, ofType) { + if (nodes.length == 0) return []; + if (formula == 'even') formula = '2n+0'; + if (formula == 'odd') formula = '2n+1'; + var h = Selector.handlers, results = [], indexed = [], m; + h.mark(nodes); + for (var i = 0, node; node = nodes[i]; i++) { + if (!node.parentNode._countedByPrototype) { + h.index(node.parentNode, reverse, ofType); + indexed.push(node.parentNode); + } + } + if (formula.match(/^\d+$/)) { // just a number + formula = Number(formula); + for (var i = 0, node; node = nodes[i]; i++) + if (node.nodeIndex == formula) results.push(node); + } else if (m = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b + if (m[1] == "-") m[1] = -1; + var a = m[1] ? Number(m[1]) : 1; + var b = m[2] ? Number(m[2]) : 0; + var indices = Selector.pseudos.getIndices(a, b, nodes.length); + for (var i = 0, node, l = indices.length; node = nodes[i]; i++) { + for (var j = 0; j < l; j++) + if (node.nodeIndex == indices[j]) results.push(node); + } + } + h.unmark(nodes); + h.unmark(indexed); + return results; + }, + + 'empty': function(nodes, value, root) { + for (var i = 0, results = [], node; node = nodes[i]; i++) { + // IE treats comments as element nodes + if (node.tagName == '!' || node.firstChild) continue; + results.push(node); + } + return results; + }, + + 'not': function(nodes, selector, root) { + var h = Selector.handlers, selectorType, m; + var exclusions = new Selector(selector).findElements(root); + h.mark(exclusions); + for (var i = 0, results = [], node; node = nodes[i]; i++) + if (!node._countedByPrototype) results.push(node); + h.unmark(exclusions); + return results; + }, + + 'enabled': function(nodes, value, root) { + for (var i = 0, results = [], node; node = nodes[i]; i++) + if (!node.disabled && (!node.type || node.type !== 'hidden')) + results.push(node); + return results; + }, + + 'disabled': function(nodes, value, root) { + for (var i = 0, results = [], node; node = nodes[i]; i++) + if (node.disabled) results.push(node); + return results; + }, + + 'checked': function(nodes, value, root) { + for (var i = 0, results = [], node; node = nodes[i]; i++) + if (node.checked) results.push(node); + return results; + } + }, + + operators: { + '=': function(nv, v) { return nv == v; }, + '!=': function(nv, v) { return nv != v; }, + '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); }, + '$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); }, + '*=': function(nv, v) { return nv == v || nv && nv.include(v); }, + '$=': function(nv, v) { return nv.endsWith(v); }, + '*=': function(nv, v) { return nv.include(v); }, + '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); }, + '|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() + + '-').include('-' + (v || "").toUpperCase() + '-'); } + }, + + split: function(expression) { + var expressions = []; + expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/, function(m) { + expressions.push(m[1].strip()); + }); + return expressions; + }, + + matchElements: function(elements, expression) { + var matches = $$(expression), h = Selector.handlers; + h.mark(matches); + for (var i = 0, results = [], element; element = elements[i]; i++) + if (element._countedByPrototype) results.push(element); + h.unmark(matches); + return results; + }, + + findElement: function(elements, expression, index) { + if (Object.isNumber(expression)) { + index = expression; expression = false; + } + return Selector.matchElements(elements, expression || '*')[index || 0]; + }, + + findChildElements: function(element, expressions) { + expressions = Selector.split(expressions.join(',')); + var results = [], h = Selector.handlers; + for (var i = 0, l = expressions.length, selector; i < l; i++) { + selector = new Selector(expressions[i].strip()); + h.concat(results, selector.findElements(element)); + } + return (l > 1) ? h.unique(results) : results; + } +}); + +if (Prototype.Browser.IE) { + Object.extend(Selector.handlers, { + // IE returns comment nodes on getElementsByTagName("*"). + // Filter them out. + concat: function(a, b) { + for (var i = 0, node; node = b[i]; i++) + if (node.tagName !== "!") a.push(node); + return a; + }, + + // IE improperly serializes _countedByPrototype in (inner|outer)HTML. + unmark: function(nodes) { + for (var i = 0, node; node = nodes[i]; i++) + node.removeAttribute('_countedByPrototype'); + return nodes; + } + }); +} + +function $$() { + return Selector.findChildElements(document, $A(arguments)); +} +var Form = { + reset: function(form) { + $(form).reset(); + return form; + }, + + serializeElements: function(elements, options) { + if (typeof options != 'object') options = { hash: !!options }; + else if (Object.isUndefined(options.hash)) options.hash = true; + var key, value, submitted = false, submit = options.submit; + + var data = elements.inject({ }, function(result, element) { + if (!element.disabled && element.name) { + key = element.name; value = $(element).getValue(); + if (value != null && element.type != 'file' && (element.type != 'submit' || (!submitted && + submit !== false && (!submit || key == submit) && (submitted = true)))) { + if (key in result) { + // a key is already present; construct an array of values + if (!Object.isArray(result[key])) result[key] = [result[key]]; + result[key].push(value); + } + else result[key] = value; + } + } + return result; + }); + + return options.hash ? data : Object.toQueryString(data); + } +}; + +Form.Methods = { + serialize: function(form, options) { + return Form.serializeElements(Form.getElements(form), options); + }, + + getElements: function(form) { + return $A($(form).getElementsByTagName('*')).inject([], + function(elements, child) { + if (Form.Element.Serializers[child.tagName.toLowerCase()]) + elements.push(Element.extend(child)); + return elements; + } + ); + }, + + getInputs: function(form, typeName, name) { + form = $(form); + var inputs = form.getElementsByTagName('input'); + + if (!typeName && !name) return $A(inputs).map(Element.extend); + + for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) { + var input = inputs[i]; + if ((typeName && input.type != typeName) || (name && input.name != name)) + continue; + matchingInputs.push(Element.extend(input)); + } + + return matchingInputs; + }, + + disable: function(form) { + form = $(form); + Form.getElements(form).invoke('disable'); + return form; + }, + + enable: function(form) { + form = $(form); + Form.getElements(form).invoke('enable'); + return form; + }, + + findFirstElement: function(form) { + var elements = $(form).getElements().findAll(function(element) { + return 'hidden' != element.type && !element.disabled; + }); + var firstByIndex = elements.findAll(function(element) { + return element.hasAttribute('tabIndex') && element.tabIndex >= 0; + }).sortBy(function(element) { return element.tabIndex }).first(); + + return firstByIndex ? firstByIndex : elements.find(function(element) { + return ['input', 'select', 'textarea'].include(element.tagName.toLowerCase()); + }); + }, + + focusFirstElement: function(form) { + form = $(form); + form.findFirstElement().activate(); + return form; + }, + + request: function(form, options) { + form = $(form), options = Object.clone(options || { }); + + var params = options.parameters, action = form.readAttribute('action') || ''; + if (action.blank()) action = window.location.href; + options.parameters = form.serialize(true); + + if (params) { + if (Object.isString(params)) params = params.toQueryParams(); + Object.extend(options.parameters, params); + } + + if (form.hasAttribute('method') && !options.method) + options.method = form.method; + + return new Ajax.Request(action, options); + } +}; + +/*--------------------------------------------------------------------------*/ + +Form.Element = { + focus: function(element) { + $(element).focus(); + return element; + }, + + select: function(element) { + $(element).select(); + return element; + } +}; + +Form.Element.Methods = { + serialize: function(element) { + element = $(element); + if (!element.disabled && element.name) { + var value = element.getValue(); + if (value != undefined) { + var pair = { }; + pair[element.name] = value; + return Object.toQueryString(pair); + } + } + return ''; + }, + + getValue: function(element) { + element = $(element); + var method = element.tagName.toLowerCase(); + return Form.Element.Serializers[method](element); + }, + + setValue: function(element, value) { + element = $(element); + var method = element.tagName.toLowerCase(); + Form.Element.Serializers[method](element, value); + return element; + }, + + clear: function(element) { + $(element).value = ''; + return element; + }, + + present: function(element) { + return $(element).value != ''; + }, + + activate: function(element) { + element = $(element); + try { + element.focus(); + if (element.select && (element.tagName.toLowerCase() != 'input' || + !['button', 'reset', 'submit'].include(element.type))) + element.select(); + } catch (e) { } + return element; + }, + + disable: function(element) { + element = $(element); + element.disabled = true; + return element; + }, + + enable: function(element) { + element = $(element); + element.disabled = false; + return element; + } +}; + +/*--------------------------------------------------------------------------*/ + +var Field = Form.Element; +var $F = Form.Element.Methods.getValue; + +/*--------------------------------------------------------------------------*/ + +Form.Element.Serializers = { + input: function(element, value) { + switch (element.type.toLowerCase()) { + case 'checkbox': + case 'radio': + return Form.Element.Serializers.inputSelector(element, value); + default: + return Form.Element.Serializers.textarea(element, value); + } + }, + + inputSelector: function(element, value) { + if (Object.isUndefined(value)) return element.checked ? element.value : null; + else element.checked = !!value; + }, + + textarea: function(element, value) { + if (Object.isUndefined(value)) return element.value; + else element.value = value; + }, + + select: function(element, value) { + if (Object.isUndefined(value)) + return this[element.type == 'select-one' ? + 'selectOne' : 'selectMany'](element); + else { + var opt, currentValue, single = !Object.isArray(value); + for (var i = 0, length = element.length; i < length; i++) { + opt = element.options[i]; + currentValue = this.optionValue(opt); + if (single) { + if (currentValue == value) { + opt.selected = true; + return; + } + } + else opt.selected = value.include(currentValue); + } + } + }, + + selectOne: function(element) { + var index = element.selectedIndex; + return index >= 0 ? this.optionValue(element.options[index]) : null; + }, + + selectMany: function(element) { + var values, length = element.length; + if (!length) return null; + + for (var i = 0, values = []; i < length; i++) { + var opt = element.options[i]; + if (opt.selected) values.push(this.optionValue(opt)); + } + return values; + }, + + optionValue: function(opt) { + // extend element because hasAttribute may not be native + return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text; + } +}; + +/*--------------------------------------------------------------------------*/ + +Abstract.TimedObserver = Class.create(PeriodicalExecuter, { + initialize: function($super, element, frequency, callback) { + $super(callback, frequency); + this.element = $(element); + this.lastValue = this.getValue(); + }, + + execute: function() { + var value = this.getValue(); + if (Object.isString(this.lastValue) && Object.isString(value) ? + this.lastValue != value : String(this.lastValue) != String(value)) { + this.callback(this.element, value); + this.lastValue = value; + } + } +}); + +Form.Element.Observer = Class.create(Abstract.TimedObserver, { + getValue: function() { + return Form.Element.getValue(this.element); + } +}); + +Form.Observer = Class.create(Abstract.TimedObserver, { + getValue: function() { + return Form.serialize(this.element); + } +}); + +/*--------------------------------------------------------------------------*/ + +Abstract.EventObserver = Class.create({ + initialize: function(element, callback) { + this.element = $(element); + this.callback = callback; + + this.lastValue = this.getValue(); + if (this.element.tagName.toLowerCase() == 'form') + this.registerFormCallbacks(); + else + this.registerCallback(this.element); + }, + + onElementEvent: function() { + var value = this.getValue(); + if (this.lastValue != value) { + this.callback(this.element, value); + this.lastValue = value; + } + }, + + registerFormCallbacks: function() { + Form.getElements(this.element).each(this.registerCallback, this); + }, + + registerCallback: function(element) { + if (element.type) { + switch (element.type.toLowerCase()) { + case 'checkbox': + case 'radio': + Event.observe(element, 'click', this.onElementEvent.bind(this)); + break; + default: + Event.observe(element, 'change', this.onElementEvent.bind(this)); + break; + } + } + } +}); + +Form.Element.EventObserver = Class.create(Abstract.EventObserver, { + getValue: function() { + return Form.Element.getValue(this.element); + } +}); + +Form.EventObserver = Class.create(Abstract.EventObserver, { + getValue: function() { + return Form.serialize(this.element); + } +}); +if (!window.Event) var Event = { }; + +Object.extend(Event, { + KEY_BACKSPACE: 8, + KEY_TAB: 9, + KEY_RETURN: 13, + KEY_ESC: 27, + KEY_LEFT: 37, + KEY_UP: 38, + KEY_RIGHT: 39, + KEY_DOWN: 40, + KEY_DELETE: 46, + KEY_HOME: 36, + KEY_END: 35, + KEY_PAGEUP: 33, + KEY_PAGEDOWN: 34, + KEY_INSERT: 45, + + cache: { }, + + relatedTarget: function(event) { + var element; + switch(event.type) { + case 'mouseover': element = event.fromElement; break; + case 'mouseout': element = event.toElement; break; + default: return null; + } + return Element.extend(element); + } +}); + +Event.Methods = (function() { + var isButton; + + if (Prototype.Browser.IE) { + var buttonMap = { 0: 1, 1: 4, 2: 2 }; + isButton = function(event, code) { + return event.button == buttonMap[code]; + }; + + } else if (Prototype.Browser.WebKit) { + isButton = function(event, code) { + switch (code) { + case 0: return event.which == 1 && !event.metaKey; + case 1: return event.which == 1 && event.metaKey; + default: return false; + } + }; + + } else { + isButton = function(event, code) { + return event.which ? (event.which === code + 1) : (event.button === code); + }; + } + + return { + isLeftClick: function(event) { return isButton(event, 0) }, + isMiddleClick: function(event) { return isButton(event, 1) }, + isRightClick: function(event) { return isButton(event, 2) }, + + element: function(event) { + event = Event.extend(event); + + var node = event.target, + type = event.type, + currentTarget = event.currentTarget; + + if (currentTarget && currentTarget.tagName) { + // Firefox screws up the "click" event when moving between radio buttons + // via arrow keys. It also screws up the "load" and "error" events on images, + // reporting the document as the target instead of the original image. + if (type === 'load' || type === 'error' || + (type === 'click' && currentTarget.tagName.toLowerCase() === 'input' + && currentTarget.type === 'radio')) + node = currentTarget; + } + if (node.nodeType == Node.TEXT_NODE) node = node.parentNode; + return Element.extend(node); + }, + + findElement: function(event, expression) { + var element = Event.element(event); + if (!expression) return element; + var elements = [element].concat(element.ancestors()); + return Selector.findElement(elements, expression, 0); + }, + + pointer: function(event) { + var docElement = document.documentElement, + body = document.body || { scrollLeft: 0, scrollTop: 0 }; + return { + x: event.pageX || (event.clientX + + (docElement.scrollLeft || body.scrollLeft) - + (docElement.clientLeft || 0)), + y: event.pageY || (event.clientY + + (docElement.scrollTop || body.scrollTop) - + (docElement.clientTop || 0)) + }; + }, + + pointerX: function(event) { return Event.pointer(event).x }, + pointerY: function(event) { return Event.pointer(event).y }, + + stop: function(event) { + Event.extend(event); + event.preventDefault(); + event.stopPropagation(); + event.stopped = true; + } + }; +})(); + +Event.extend = (function() { + var methods = Object.keys(Event.Methods).inject({ }, function(m, name) { + m[name] = Event.Methods[name].methodize(); + return m; + }); + + if (Prototype.Browser.IE) { + Object.extend(methods, { + stopPropagation: function() { this.cancelBubble = true }, + preventDefault: function() { this.returnValue = false }, + inspect: function() { return "[object Event]" } + }); + + return function(event) { + if (!event) return false; + if (event._extendedByPrototype) return event; + + event._extendedByPrototype = Prototype.emptyFunction; + var pointer = Event.pointer(event); + Object.extend(event, { + target: event.srcElement, + relatedTarget: Event.relatedTarget(event), + pageX: pointer.x, + pageY: pointer.y + }); + return Object.extend(event, methods); + }; + + } else { + Event.prototype = Event.prototype || document.createEvent("HTMLEvents")['__proto__']; + Object.extend(Event.prototype, methods); + return Prototype.K; + } +})(); + +Object.extend(Event, (function() { + var cache = Event.cache; + + function getEventID(element) { + if (element._prototypeEventID) return element._prototypeEventID[0]; + arguments.callee.id = arguments.callee.id || 1; + return element._prototypeEventID = [++arguments.callee.id]; + } + + function getDOMEventName(eventName) { + if (eventName && eventName.include(':')) return "dataavailable"; + return eventName; + } + + function getCacheForID(id) { + return cache[id] = cache[id] || { }; + } + + function getWrappersForEventName(id, eventName) { + var c = getCacheForID(id); + return c[eventName] = c[eventName] || []; + } + + function createWrapper(element, eventName, handler) { + var id = getEventID(element); + var c = getWrappersForEventName(id, eventName); + if (c.pluck("handler").include(handler)) return false; + + var wrapper = function(event) { + if (!Event || !Event.extend || + (event.eventName && event.eventName != eventName)) + return false; + + Event.extend(event); + handler.call(element, event); + }; + + wrapper.handler = handler; + c.push(wrapper); + return wrapper; + } + + function findWrapper(id, eventName, handler) { + var c = getWrappersForEventName(id, eventName); + return c.find(function(wrapper) { return wrapper.handler == handler }); + } + + function destroyWrapper(id, eventName, handler) { + var c = getCacheForID(id); + if (!c[eventName]) return false; + c[eventName] = c[eventName].without(findWrapper(id, eventName, handler)); + } + + function destroyCache() { + for (var id in cache) + for (var eventName in cache[id]) + cache[id][eventName] = null; + } + + + // Internet Explorer needs to remove event handlers on page unload + // in order to avoid memory leaks. + if (window.attachEvent) { + window.attachEvent("onunload", destroyCache); + } + + // Safari has a dummy event handler on page unload so that it won't + // use its bfcache. Safari <= 3.1 has an issue with restoring the "document" + // object when page is returned to via the back button using its bfcache. + if (Prototype.Browser.WebKit) { + window.addEventListener('unload', Prototype.emptyFunction, false); + } + + return { + observe: function(element, eventName, handler) { + element = $(element); + var name = getDOMEventName(eventName); + + var wrapper = createWrapper(element, eventName, handler); + if (!wrapper) return element; + + if (element.addEventListener) { + element.addEventListener(name, wrapper, false); + } else { + element.attachEvent("on" + name, wrapper); + } + + return element; + }, + + stopObserving: function(element, eventName, handler) { + element = $(element); + var id = getEventID(element), name = getDOMEventName(eventName); + + if (!handler && eventName) { + getWrappersForEventName(id, eventName).each(function(wrapper) { + element.stopObserving(eventName, wrapper.handler); + }); + return element; + + } else if (!eventName) { + Object.keys(getCacheForID(id)).each(function(eventName) { + element.stopObserving(eventName); + }); + return element; + } + + var wrapper = findWrapper(id, eventName, handler); + if (!wrapper) return element; + + if (element.removeEventListener) { + element.removeEventListener(name, wrapper, false); + } else { + element.detachEvent("on" + name, wrapper); + } + + destroyWrapper(id, eventName, handler); + + return element; + }, + + fire: function(element, eventName, memo) { + element = $(element); + if (element == document && document.createEvent && !element.dispatchEvent) + element = document.documentElement; + + var event; + if (document.createEvent) { + event = document.createEvent("HTMLEvents"); + event.initEvent("dataavailable", true, true); + } else { + event = document.createEventObject(); + event.eventType = "ondataavailable"; + } + + event.eventName = eventName; + event.memo = memo || { }; + + if (document.createEvent) { + element.dispatchEvent(event); + } else { + element.fireEvent(event.eventType, event); + } + + return Event.extend(event); + } + }; +})()); + +Object.extend(Event, Event.Methods); + +Element.addMethods({ + fire: Event.fire, + observe: Event.observe, + stopObserving: Event.stopObserving +}); + +Object.extend(document, { + fire: Element.Methods.fire.methodize(), + observe: Element.Methods.observe.methodize(), + stopObserving: Element.Methods.stopObserving.methodize(), + loaded: false +}); + +(function() { + /* Support for the DOMContentLoaded event is based on work by Dan Webb, + Matthias Miller, Dean Edwards and John Resig. */ + + var timer; + + function fireContentLoadedEvent() { + if (document.loaded) return; + if (timer) window.clearInterval(timer); + document.fire("dom:loaded"); + document.loaded = true; + } + + if (document.addEventListener) { + if (Prototype.Browser.WebKit) { + timer = window.setInterval(function() { + if (/loaded|complete/.test(document.readyState)) + fireContentLoadedEvent(); + }, 0); + + Event.observe(window, "load", fireContentLoadedEvent); + + } else { + document.addEventListener("DOMContentLoaded", + fireContentLoadedEvent, false); + } + + } else { + document.write(" +END + end + end + + # Surrounds the filtered text with CDATA tags. + module Cdata + include Base + + # @see Base#render + def render(text) + "" + end + end + + # Works the same as {Plain}, but HTML-escapes the text + # before placing it in the document. + module Escaped + include Base + + # @see Base#render + def render(text) + Haml::Helpers.html_escape text + end + end + + # Parses the filtered text with the normal Ruby interpreter. + # All output sent to `$stdout`, such as with `puts`, + # is output into the Haml document. + # Not available if the {file:HAML_REFERENCE.md#suppress_eval-option `:suppress_eval`} option is set to true. + # The Ruby code is evaluated in the same context as the Haml template. + module Ruby + include Base + lazy_require 'stringio' + + # @see Base#compile + def compile(precompiler, text) + return if precompiler.options[:suppress_eval] + precompiler.instance_eval do + push_silent <<-FIRST.gsub("\n", ';') + text + <<-LAST.gsub("\n", ';') + _haml_old_stdout = $stdout + $stdout = StringIO.new(_hamlout.buffer, 'a') + FIRST + _haml_old_stdout, $stdout = $stdout, _haml_old_stdout + _haml_old_stdout.close + LAST + end + end + end + + # Inserts the filtered text into the template with whitespace preserved. + # `preserve`d blocks of text aren't indented, + # and newlines are replaced with the HTML escape code for newlines, + # to preserve nice-looking output. + # + # @see Haml::Helpers#preserve + module Preserve + include Base + + # @see Base#render + def render(text) + Haml::Helpers.preserve text + end + end + + # Parses the filtered text with {Sass} to produce CSS output. + module Sass + include Base + lazy_require 'sass/plugin' + + # @see Base#render + def render(text) + ::Sass::Engine.new(text, ::Sass::Plugin.engine_options).render + end + end + + # Parses the filtered text with ERB, like an RHTML template. + # Not available if the {file:HAML_REFERENCE.md#suppress_eval-option `:suppress_eval`} option is set to true. + # Embedded Ruby code is evaluated in the same context as the Haml template. + module ERB + include Base + lazy_require 'erb' + + # @see Base#compile + def compile(precompiler, text) + return if precompiler.options[:suppress_eval] + src = ::ERB.new(text).src.sub(/^#coding:.*?\n/, ''). + sub(/^_erbout = '';/, "").gsub("\n", ';') + precompiler.send(:push_silent, src) + end + end + + # Parses the filtered text with [Textile](http://www.textism.com/tools/textile). + # Only works if [RedCloth](http://redcloth.org) is installed. + module Textile + include Base + lazy_require 'redcloth' + + # @see Base#render + def render(text) + ::RedCloth.new(text).to_html(:textile) + end + end + RedCloth = Textile + Filters.defined['redcloth'] = RedCloth + + # Parses the filtered text with [Markdown](http://daringfireball.net/projects/markdown). + # Only works if [RDiscount](http://github.com/rtomayko/rdiscount), + # [RPeg-Markdown](http://github.com/rtomayko/rpeg-markdown), + # [Maruku](http://maruku.rubyforge.org), + # or [BlueCloth](www.deveiate.org/projects/BlueCloth) are installed. + module Markdown + include Base + lazy_require 'rdiscount', 'peg_markdown', 'maruku', 'bluecloth' + + # @see Base#render + def render(text) + engine = case @required + when 'rdiscount' + ::RDiscount + when 'peg_markdown' + ::PEGMarkdown + when 'maruku' + ::Maruku + when 'bluecloth' + ::BlueCloth + end + engine.new(text).to_html + end + end + + # Parses the filtered text with [Maruku](http://maruku.rubyforge.org), + # which has some non-standard extensions to Markdown. + module Maruku + include Base + lazy_require 'maruku' + + # @see Base#render + def render(text) + ::Maruku.new(text).to_html + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/helpers.rb b/vendor/gems/haml-2.2.16/lib/haml/helpers.rb new file mode 100644 index 0000000..b1bb991 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/helpers.rb @@ -0,0 +1,563 @@ +if defined?(ActionView) + require 'haml/helpers/action_view_mods' + require 'haml/helpers/action_view_extensions' +end + +module Haml + # This module contains various helpful methods to make it easier to do various tasks. + # {Haml::Helpers} is automatically included in the context + # that a Haml template is parsed in, so all these methods are at your + # disposal from within the template. + module Helpers + # An object that raises an error when \{#to\_s} is called. + # It's used to raise an error when the return value of a helper is used + # when it shouldn't be. + class ErrorReturn + # @param message [String] The error message to raise when \{#to\_s} is called + def initialize(method) + @message = < e + e.backtrace.shift + + # If the ErrorReturn is used directly in the template, + # we don't want Haml's stuff to get into the backtrace, + # so we get rid of the format_script line. + # + # We also have to subtract one from the Haml line number + # since the value is passed to format_script the line after + # it's actually used. + if e.backtrace.first =~ /^\(eval\):\d+:in `format_script/ + e.backtrace.shift + e.backtrace.first.gsub!(/^\(haml\):(\d+)/) {|s| "(haml):#{$1.to_i - 1}"} + end + raise e + end + + # @return [String] A human-readable string representation + def inspect + "Haml::Helpers::ErrorReturn(#{@message.inspect})" + end + end + + self.extend self + + @@action_view_defined = defined?(ActionView) + @@force_no_action_view = false + + # @return [Boolean] Whether or not ActionView is loaded + def self.action_view? + @@action_view_defined + end + + # Note: this does **not** need to be called when using Haml helpers + # normally in Rails. + # + # Initializes the current object as though it were in the same context + # as a normal ActionView instance using Haml. + # This is useful if you want to use the helpers in a context + # other than the normal setup with ActionView. + # For example: + # + # context = Object.new + # class << context + # include Haml::Helpers + # end + # context.init_haml_helpers + # context.haml_tag :p, "Stuff" + # + def init_haml_helpers + @haml_buffer = Haml::Buffer.new(@haml_buffer, Haml::Engine.new('').send(:options_for_buffer)) + nil + end + + # Runs a block of code in a non-Haml context + # (i.e. \{#is\_haml?} will return false). + # + # This is mainly useful for rendering sub-templates such as partials in a non-Haml language, + # particularly where helpers may behave differently when run from Haml. + # + # Note that this is automatically applied to Rails partials. + # + # @yield A block which won't register as Haml + def non_haml + was_active = @haml_buffer.active? + @haml_buffer.active = false + yield + ensure + @haml_buffer.active = was_active + end + + # Uses \{#preserve} to convert any newlines inside whitespace-sensitive tags + # into the HTML entities for endlines. + # + # @param tags [Array] Tags that should have newlines escaped + # + # @overload find_and_preserve(input, tags = haml_buffer.options[:preserve]) + # Escapes newlines within a string. + # + # @param input [String] The string within which to escape newlines + # @overload find_and_preserve(tags = haml_buffer.options[:preserve]) + # Escapes newlines within a block of Haml code. + # + # @yield The block within which to escape newlines + def find_and_preserve(input = nil, tags = haml_buffer.options[:preserve], &block) + return find_and_preserve(capture_haml(&block), input || tags) if block + input.to_s.gsub(/<(#{tags.map(&Regexp.method(:escape)).join('|')})([^>]*)>(.*?)(<\/\1>)/im) do + "<#{$1}#{$2}>#{preserve($3)}" + end + end + + # Takes any string, finds all the newlines, and converts them to + # HTML entities so they'll render correctly in + # whitespace-sensitive tags without screwing up the indentation. + # + # @overload perserve(input) + # Escapes newlines within a string. + # + # @param input [String] The string within which to escape all newlines + # @overload perserve + # Escapes newlines within a block of Haml code. + # + # @yield The block within which to escape newlines + def preserve(input = nil, &block) + return preserve(capture_haml(&block)) if block + input.to_s.chomp("\n").gsub(/\n/, ' ').gsub(/\r/, '') + end + alias_method :flatten, :preserve + + # Takes an `Enumerable` object and a block + # and iterates over the enum, + # yielding each element to a Haml block + # and putting the result into `
  • ` elements. + # This creates a list of the results of the block. + # For example: + # + # = list_of([['hello'], ['yall']]) do |i| + # = i[0] + # + # Produces: + # + #
  • hello
  • + #
  • yall
  • + # + # And + # + # = list_of({:title => 'All the stuff', :description => 'A book about all the stuff.'}) do |key, val| + # %h3= key.humanize + # %p= val + # + # Produces: + # + #
  • + #

    Title

    + #

    All the stuff

    + #
  • + #
  • + #

    Description

    + #

    A book about all the stuff.

    + #
  • + # + # @param enum [Enumerable] The list of objects to iterate over + # @yield [item] A block which contains Haml code that goes within list items + # @yieldparam item An element of `enum` + def list_of(enum, &block) + to_return = enum.collect do |i| + result = capture_haml(i, &block) + + if result.count("\n") > 1 + result.gsub!("\n", "\n ") + result = "\n #{result.strip}\n" + else + result.strip! + end + + "
  • #{result}
  • " + end + to_return.join("\n") + end + + # Returns a hash containing default assignments for the `xmlns`, `lang`, and `xml:lang` + # attributes of the `html` HTML element. + # For example, + # + # %html{html_attrs} + # + # becomes + # + # + # + # @param lang [String] The value of `xml:lang` and `lang` + # @return [{#to_s => String}] The attribute hash + def html_attrs(lang = 'en-US') + {:xmlns => "http://www.w3.org/1999/xhtml", 'xml:lang' => lang, :lang => lang} + end + + # Increments the number of tabs the buffer automatically adds + # to the lines of the template. + # For example: + # + # %h1 foo + # - tab_up + # %p bar + # - tab_down + # %strong baz + # + # Produces: + # + #

    foo

    + #

    bar

    + # baz + # + # @param i [Fixnum] The number of tabs by which to increase the indentation + # @see #tab_down + def tab_up(i = 1) + haml_buffer.tabulation += i + end + + # Decrements the number of tabs the buffer automatically adds + # to the lines of the template. + # + # @param i [Fixnum] The number of tabs by which to decrease the indentation + # @see #tab_up + def tab_down(i = 1) + haml_buffer.tabulation -= i + end + + # Surrounds a block of Haml code with strings, + # with no whitespace in between. + # For example: + # + # = surround '(', ')' do + # %a{:href => "food"} chicken + # + # Produces: + # + # (chicken) + # + # and + # + # = surround '*' do + # %strong angry + # + # Produces: + # + # *angry* + # + # @param front [String] The string to add before the Haml + # @param back [String] The string to add after the Haml + # @yield A block of Haml to surround + def surround(front, back = front, &block) + output = capture_haml(&block) + + "#{front}#{output.chomp}#{back}\n" + end + + # Prepends a string to the beginning of a Haml block, + # with no whitespace between. + # For example: + # + # = precede '*' do + # %span.small Not really + # + # Produces: + # + # *Not really + # + # @param str [String] The string to add before the Haml + # @yield A block of Haml to prepend to + def precede(str, &block) + "#{str}#{capture_haml(&block).chomp}\n" + end + + # Appends a string to the end of a Haml block, + # with no whitespace between. + # For example: + # + # click + # = succeed '.' do + # %a{:href=>"thing"} here + # + # Produces: + # + # click + # here. + # + # @param str [String] The string to add after the Haml + # @yield A block of Haml to append to + def succeed(str, &block) + "#{capture_haml(&block).chomp}#{str}\n" + end + + # Captures the result of a block of Haml code, + # gets rid of the excess indentation, + # and returns it as a string. + # For example, after the following, + # + # .foo + # - foo = capture_haml(13) do |a| + # %p= a + # + # the local variable `foo` would be assigned to `"

    13

    \n"`. + # + # @param args [Array] Arguments to pass into the block + # @yield [args] A block of Haml code that will be converted to a string + # @yieldparam args [Array] `args` + def capture_haml(*args, &block) + buffer = eval('_hamlout', block.binding) rescue haml_buffer + with_haml_buffer(buffer) do + position = haml_buffer.buffer.length + + haml_buffer.capture_position = position + block.call(*args) + + captured = haml_buffer.buffer.slice!(position..-1).split(/^/) + + min_tabs = nil + captured.each do |line| + tabs = line.index(/[^ ]/) || line.length + min_tabs ||= tabs + min_tabs = min_tabs > tabs ? tabs : min_tabs + end + + captured.map do |line| + line[min_tabs..-1] + end.join + end + ensure + haml_buffer.capture_position = nil + end + + # @deprecated This will be removed in version 2.4. + # @see #haml_concat + def puts(*args) + warn <`). + # Currently, only `:/` and `:<` are supported. + # + # `haml_tag` outputs directly to the buffer; + # its return value should not be used. + # If you need to get the results as a string, + # use \{#capture\_haml\}. + # + # For example, + # + # haml_tag :table do + # haml_tag :tr do + # haml_tag :td, {:class => 'cell'} do + # haml_tag :strong, "strong!" + # haml_concat "data" + # end + # haml_tag :td do + # haml_concat "more_data" + # end + # end + # end + # + # outputs + # + # + # + # + # + # + #
    + # + # strong! + # + # data + # + # more_data + #
    + # + # @param name [#to_s] The name of the tag + # @param flags [Array] Haml end-of-tag flags + # + # @overload haml_tag(name, *flags, attributes = {}) + # @yield The block of Haml code within the tag + # @overload haml_tag(name, text, *flags, attributes = {}) + # @param text [#to_s] The text within the tag + def haml_tag(name, *rest, &block) + ret = ErrorReturn.new("haml_tag") + + name = name.to_s + text = rest.shift.to_s unless [Symbol, Hash, NilClass].any? {|t| rest.first.is_a? t} + flags = [] + flags << rest.shift while rest.first.is_a? Symbol + attributes = Haml::Precompiler.build_attributes(haml_buffer.html?, + haml_buffer.options[:attr_wrapper], + rest.shift || {}) + + if text.nil? && block.nil? && (haml_buffer.options[:autoclose].include?(name) || flags.include?(:/)) + haml_concat "<#{name}#{attributes} />" + return ret + end + + if flags.include?(:/) + raise Error.new("Self-closing tags can't have content.") if text + raise Error.new("Illegal nesting: nesting within a self-closing tag is illegal.") if block + end + + tag = "<#{name}#{attributes}>" + if block.nil? + tag << text.to_s << "" + haml_concat tag + return ret + end + + if text + raise Error.new("Illegal nesting: content can't be both given to haml_tag :#{name} and nested within it.") + end + + if flags.include?(:<) + tag << capture_haml(&block).strip << "" + haml_concat tag + return ret + end + + haml_concat tag + tab_up + block.call + tab_down + haml_concat "" + + ret + end + + # Characters that need to be escaped to HTML entities from user input + HTML_ESCAPE = { '&'=>'&', '<'=>'<', '>'=>'>', '"'=>'"', "'"=>''', } + + # Returns a copy of `text` with ampersands, angle brackets and quotes + # escaped into HTML entities. + # + # Note that if ActionView is loaded and XSS protection is enabled + # (as is the default for Rails 3.0+, and optional for version 2.3.5+), + # this won't escape text declared as "safe". + # + # @param text [String] The string to sanitize + # @return [String] The sanitized string + def html_escape(text) + text.to_s.gsub(/[\"><&]/n) {|s| HTML_ESCAPE[s]} + end + + # Escapes HTML entities in `text`, but without escaping an ampersand + # that is already part of an escaped entity. + # + # @param text [String] The string to sanitize + # @return [String] The sanitized string + def escape_once(text) + Haml::Util.silence_warnings do + text.to_s.gsub(/[\"><]|&(?!(?:[a-zA-Z]+|(#\d+));)/n) {|s| HTML_ESCAPE[s]} + end + end + + # Returns whether or not the current template is a Haml template. + # + # This function, unlike other {Haml::Helpers} functions, + # also works in other `ActionView` templates, + # where it will always return false. + # + # @return [Boolean] Whether or not the current template is a Haml template + def is_haml? + !@haml_buffer.nil? && @haml_buffer.active? + end + + # Returns whether or not `block` is defined directly in a Haml template. + # + # @param block [Proc] A Ruby block + # @return [Boolean] Whether or not `block` is defined directly in a Haml template + def block_is_haml?(block) + eval('_hamlout', block.binding) + true + rescue + false + end + + private + + # Runs a block of code with the given buffer as the currently active buffer. + # + # @param buffer [Haml::Buffer] The Haml buffer to use temporarily + # @yield A block in which the given buffer should be used + def with_haml_buffer(buffer) + @haml_buffer, old_buffer = buffer, @haml_buffer + old_buffer.active, was_active = false, old_buffer.active? if old_buffer + @haml_buffer.active = true + yield + ensure + @haml_buffer.active = false + old_buffer.active = was_active if old_buffer + @haml_buffer = old_buffer + end + + # The current {Haml::Buffer} object. + # + # @return [Haml::Buffer] + def haml_buffer + @haml_buffer + end + + # Gives a proc the same local `_hamlout` and `_erbout` variables + # that the current template has. + # + # @param proc [#call] The proc to bind + # @return [Proc] A new proc with the new variables bound + def haml_bind_proc(&proc) + _hamlout = haml_buffer + _erbout = _hamlout.buffer + proc { |*args| proc.call(*args) } + end + + include ActionViewExtensions if self.const_defined? "ActionViewExtensions" + end +end + +class Object + # Haml overrides various `ActionView` helpers, + # which call an \{#is\_haml?} method + # to determine whether or not the current context object + # is a proper Haml context. + # Because `ActionView` helpers may be included in non-`ActionView::Base` classes, + # it's a good idea to define \{#is\_haml?} for all objects. + def is_haml? + false + end +end + diff --git a/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_extensions.rb b/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_extensions.rb new file mode 100644 index 0000000..6c92b16 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_extensions.rb @@ -0,0 +1,55 @@ +require 'haml/helpers/action_view_mods' + +module Haml + module Helpers + # This module contains various useful helper methods + # that either tie into ActionView or the rest of the ActionPack stack, + # or are only useful in that context. + # Thus, the methods defined here are only available + # if ActionView is installed. + module ActionViewExtensions + # Returns a value for the "class" attribute + # unique to this controller/action pair. + # This can be used to target styles specifically at this action or controller. + # For example, if the current action were `EntryController#show`, + # + # %div{:class => page_class} My Div + # + # would become + # + #
    My Div
    + # + # Then, in a stylesheet (shown here as {Sass}), + # you could refer to this specific action: + # + # .entry.show + # font-weight: bold + # + # or to all actions in the entry controller: + # + # .entry + # color: #00f + # + # @return [String] The class name for the current page + def page_class + controller.controller_name + " " + controller.action_name + end + alias_method :generate_content_class_names, :page_class + + # Treats all input to \{Haml::Helpers#haml\_concat} within the block + # as being HTML safe for Rails' XSS protection. + # This is useful for wrapping blocks of code that concatenate HTML en masse. + # + # This has no effect if Rails' XSS protection isn't enabled. + # + # @yield A block in which all input to `#haml_concat` is treated as raw. + # @see Haml::Util#rails_xss_safe? + def with_raw_haml_concat + @_haml_concat_raw = true + yield + ensure + @_haml_concat_raw = false + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb b/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb new file mode 100644 index 0000000..8bafa32 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/helpers/action_view_mods.rb @@ -0,0 +1,177 @@ +module ActionView + class Base + def render_with_haml(*args, &block) + options = args.first + + # If render :layout is used with a block, + # it concats rather than returning a string + # so we need it to keep thinking it's Haml + # until it hits the sub-render + if is_haml? && !(options.is_a?(Hash) && options[:layout] && block_given?) + return non_haml { render_without_haml(*args, &block) } + end + render_without_haml(*args, &block) + end + alias_method :render_without_haml, :render + alias_method :render, :render_with_haml + + # Rails >2.1 + if Haml::Util.has?(:instance_method, self, :output_buffer) + def output_buffer_with_haml + return haml_buffer.buffer if is_haml? + output_buffer_without_haml + end + alias_method :output_buffer_without_haml, :output_buffer + alias_method :output_buffer, :output_buffer_with_haml + + def set_output_buffer_with_haml(new) + if is_haml? + new = String.new(new) if Haml::Util.rails_xss_safe? && new.is_a?(ActionView::SafeBuffer) + haml_buffer.buffer = new + else + set_output_buffer_without_haml new + end + end + alias_method :set_output_buffer_without_haml, :output_buffer= + alias_method :output_buffer=, :set_output_buffer_with_haml + end + end + + module Helpers + # In Rails <=2.1, we've got to override considerable capturing infrastructure. + # In Rails >2.1, we can make do with only overriding #capture + # (which no longer behaves differently in helper contexts). + unless Haml::Util.has?(:instance_method, ActionView::Base, :output_buffer) + module CaptureHelper + def capture_with_haml(*args, &block) + # Rails' #capture helper will just return the value of the block + # if it's not actually in the template context, + # as detected by the existance of an _erbout variable. + # We've got to do the same thing for compatibility. + + if is_haml? && block_is_haml?(block) + capture_haml(*args, &block) + else + capture_without_haml(*args, &block) + end + end + alias_method :capture_without_haml, :capture + alias_method :capture, :capture_with_haml + + def capture_erb_with_buffer_with_haml(buffer, *args, &block) + if is_haml? + capture_haml(*args, &block) + else + capture_erb_with_buffer_without_haml(buffer, *args, &block) + end + end + alias_method :capture_erb_with_buffer_without_haml, :capture_erb_with_buffer + alias_method :capture_erb_with_buffer, :capture_erb_with_buffer_with_haml + end + + module TextHelper + def concat_with_haml(string, binding = nil) + if is_haml? + haml_buffer.buffer.concat(string) + else + concat_without_haml(string, binding) + end + end + alias_method :concat_without_haml, :concat + alias_method :concat, :concat_with_haml + end + else + module CaptureHelper + def capture_with_haml(*args, &block) + if Haml::Helpers.block_is_haml?(block) + capture_haml(*args, &block) + else + capture_without_haml(*args, &block) + end + end + alias_method :capture_without_haml, :capture + alias_method :capture, :capture_with_haml + end + end + + module TagHelper + def content_tag_with_haml(name, *args, &block) + return content_tag_without_haml(name, *args, &block) unless is_haml? + + preserve = haml_buffer.options[:preserve].include?(name.to_s) + + if block_given? && block_is_haml?(block) && preserve + return content_tag_without_haml(name, *args) {preserve(&block)} + end + + returning content_tag_without_haml(name, *args, &block) do |content| + return Haml::Helpers.preserve(content) if preserve && content + end + end + + alias_method :content_tag_without_haml, :content_tag + alias_method :content_tag, :content_tag_with_haml + end + + class InstanceTag + # Includes TagHelper + + def haml_buffer + @template_object.send :haml_buffer + end + + def is_haml? + @template_object.send :is_haml? + end + + unless defined?(ActionView::Helpers::ActiveRecordInstanceTag) + alias_method :content_tag_without_haml, :content_tag + alias_method :content_tag, :content_tag_with_haml + end + end + + module FormTagHelper + def form_tag_with_haml(url_for_options = {}, options = {}, *parameters_for_url, &proc) + if is_haml? + if block_given? + oldproc = proc + proc = haml_bind_proc do |*args| + concat "\n" + tab_up + oldproc.call(*args) + tab_down + concat haml_indent + end + concat haml_indent + end + res = form_tag_without_haml(url_for_options, options, *parameters_for_url, &proc) + "\n" + concat "\n" if block_given? + res + else + form_tag_without_haml(url_for_options, options, *parameters_for_url, &proc) + end + end + alias_method :form_tag_without_haml, :form_tag + alias_method :form_tag, :form_tag_with_haml + end + + module FormHelper + def form_for_with_haml(object_name, *args, &proc) + if block_given? && is_haml? + oldproc = proc + proc = haml_bind_proc do |*args| + tab_up + oldproc.call(*args) + tab_down + concat haml_indent + end + concat haml_indent + end + form_for_without_haml(object_name, *args, &proc) + concat "\n" if block_given? && is_haml? + end + alias_method :form_for_without_haml, :form_for + alias_method :form_for, :form_for_with_haml + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/helpers/xss_mods.rb b/vendor/gems/haml-2.2.16/lib/haml/helpers/xss_mods.rb new file mode 100644 index 0000000..e5b2528 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/helpers/xss_mods.rb @@ -0,0 +1,95 @@ +module Haml + module Helpers + # This module overrides Haml helpers to work properly + # in the context of ActionView. + # Currently it's only used for modifying the helpers + # to work with Rails' XSS protection methods. + module XssMods + def self.included(base) + %w[html_escape find_and_preserve preserve list_of surround + precede succeed capture_haml haml_concat haml_indent + haml_tag escape_once].each do |name| + base.send(:alias_method, "#{name}_without_haml_xss", name) + base.send(:alias_method, name, "#{name}_with_haml_xss") + end + end + + # Don't escape text that's already safe, + # output is always HTML safe + def html_escape_with_haml_xss(text) + str = text.to_s + return text if str.html_safe? + html_escape_without_haml_xss(str).html_safe! + end + + # Output is always HTML safe + def find_and_preserve_with_haml_xss(*args, &block) + find_and_preserve_without_haml_xss(*args, &block).html_safe! + end + + # Output is always HTML safe + def preserve_with_haml_xss(*args, &block) + preserve_without_haml_xss(*args, &block).html_safe! + end + + # Output is always HTML safe + def list_of_with_haml_xss(*args, &block) + list_of_without_haml_xss(*args, &block).html_safe! + end + + # Input is escaped, output is always HTML safe + def surround_with_haml_xss(front, back = front, &block) + surround_without_haml_xss( + haml_xss_html_escape(front), + haml_xss_html_escape(back), + &block).html_safe! + end + + # Input is escaped, output is always HTML safe + def precede_with_haml_xss(str, &block) + precede_without_haml_xss(haml_xss_html_escape(str), &block).html_safe! + end + + # Input is escaped, output is always HTML safe + def succeed_with_haml_xss(str, &block) + succeed_without_haml_xss(haml_xss_html_escape(str), &block).html_safe! + end + + # Output is always HTML safe + def capture_haml_with_haml_xss(*args, &block) + capture_haml_without_haml_xss(*args, &block).html_safe! + end + + # Input is escaped + def haml_concat_with_haml_xss(text = "") + haml_concat_without_haml_xss(@_haml_concat_raw ? text : haml_xss_html_escape(text)) + end + + # Output is always HTML safe + def haml_indent_with_haml_xss + haml_indent_without_haml_xss.html_safe! + end + + # Input is escaped, haml_concat'ed output is always HTML safe + def haml_tag_with_haml_xss(name, *rest, &block) + name = haml_xss_html_escape(name.to_s) + rest.unshift(haml_xss_html_escape(rest.shift.to_s)) unless [Symbol, Hash, NilClass].any? {|t| rest.first.is_a? t} + with_raw_haml_concat {haml_tag_without_haml_xss(name, *rest, &block)} + end + + # Output is always HTML safe + def escape_once_with_haml_xss(*args) + escape_once_without_haml_xss(*args).html_safe! + end + + private + + # Escapes the HTML in the text if and only if + # Rails XSS protection is enabled *and* the `:escape_html` option is set. + def haml_xss_html_escape(text) + return text unless Haml::Util.rails_xss_safe? && haml_buffer.options[:escape_html] + html_escape(text) + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/html.rb b/vendor/gems/haml-2.2.16/lib/haml/html.rb new file mode 100644 index 0000000..36acac6 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/html.rb @@ -0,0 +1,259 @@ +require File.dirname(__FILE__) + '/../haml' + +require 'haml/engine' +require 'rubygems' +require 'cgi' + +module Haml + class HTML + # A module containing utility methods that every Hpricot node + # should have. + module Node + # Returns the Haml representation of the given node. + # + # @param tabs [Fixnum] The indentation level of the resulting Haml. + # @option options (see Haml::HTML#initialize) + def to_haml(tabs, options) + parse_text(self.to_s, tabs) + end + + private + + def tabulate(tabs) + ' ' * tabs + end + + def attr_hash + attributes.to_hash + end + + def parse_text(text, tabs) + text.strip! + text.gsub!('#{', '\#{') #' + if text.empty? + String.new + else + lines = text.split("\n") + + lines.map do |line| + line.strip! + "#{tabulate(tabs)}#{'\\' if Haml::Engine::SPECIAL_CHARACTERS.include?(line[0])}#{line}\n" + end.join + end + end + end + end +end + +# Haml monkeypatches various Hpricot classes +# to add methods for conversion to Haml. +module Hpricot + # @see Hpricot + module Node + include Haml::HTML::Node + end + + # @see Hpricot + class BaseEle + include Haml::HTML::Node + end +end + +require 'hpricot' + +module Haml + # Converts HTML documents into Haml templates. + # Depends on [Hpricot](http://github.com/whymirror/hpricot) for HTML parsing. + # + # Example usage: + # + # Haml::Engine.new("Blat").render + # #=> "%a{:href => 'http://google.com'} Blat" + class HTML + # @param template [String, Hpricot::Node] The HTML template to convert + # @option options :rhtml [Boolean] (false) Whether or not to parse + # ERB's `<%= %>` and `<% %>` into Haml's `=` and `-` + # @option options :xhtml [Boolean] (false) Whether or not to parse + # the HTML strictly as XHTML + def initialize(template, options = {}) + @options = options + + if template.is_a? Hpricot::Node + @template = template + else + if template.is_a? IO + template = template.read + end + + if @options[:rhtml] + match_to_html(template, /<%=(.*?)-?%>/m, 'loud') + match_to_html(template, /<%-?(.*?)-?%>/m, 'silent') + end + + method = @options[:xhtml] ? Hpricot.method(:XML) : method(:Hpricot) + @template = method.call(template.gsub('&', '&')) + end + end + + # Processes the document and returns the result as a string + # containing the Haml template. + def render + @template.to_haml(0, @options) + end + alias_method :to_haml, :render + + TEXT_REGEXP = /^(\s*).*$/ + + # @see Hpricot + class ::Hpricot::Doc + # @see Haml::HTML::Node#to_haml + def to_haml(tabs, options) + (children || []).inject('') {|s, c| s << c.to_haml(0, options)} + end + end + + # @see Hpricot + class ::Hpricot::XMLDecl + # @see Haml::HTML::Node#to_haml + def to_haml(tabs, options) + "#{tabulate(tabs)}!!! XML\n" + end + end + + # @see Hpricot + class ::Hpricot::CData + # @see Haml::HTML::Node#to_haml + def to_haml(tabs, options) + "#{tabulate(tabs)}:cdata\n#{parse_text(self.content, tabs + 1)}" + end + end + + # @see Hpricot + class ::Hpricot::DocType + # @see Haml::HTML::Node#to_haml + def to_haml(tabs, options) + attrs = public_id.scan(/DTD\s+([^\s]+)\s*([^\s]*)\s*([^\s]*)\s*\/\//)[0] + if attrs == nil + raise Exception.new("Invalid doctype") + end + + type, version, strictness = attrs.map { |a| a.downcase } + if type == "html" + version = "1.0" + strictness = "transitional" + end + + if version == "1.0" || version.empty? + version = nil + end + + if strictness == 'transitional' || strictness.empty? + strictness = nil + end + + version = " #{version}" if version + strictness = " #{strictness.capitalize}" if strictness + + "#{tabulate(tabs)}!!!#{version}#{strictness}\n" + end + end + + # @see Hpricot + class ::Hpricot::Comment + # @see Haml::HTML::Node#to_haml + def to_haml(tabs, options) + "#{tabulate(tabs)}/\n#{parse_text(self.content, tabs + 1)}" + end + end + + # @see Hpricot + class ::Hpricot::Elem + # @see Haml::HTML::Node#to_haml + def to_haml(tabs, options) + output = "#{tabulate(tabs)}" + if options[:rhtml] && name[0...5] == 'haml:' + return output + send("haml_tag_#{name[5..-1]}", CGI.unescapeHTML(self.inner_text)) + end + + output += "%#{name}" unless name == 'div' && + (static_id?(options) || static_classname?(options)) + + if attr_hash + if static_id?(options) + output += "##{attr_hash['id']}" + remove_attribute('id') + end + if static_classname?(options) + attr_hash['class'].split(' ').each { |c| output += ".#{c}" } + remove_attribute('class') + end + output += haml_attributes(options) if attr_hash.length > 0 + end + + (self.children || []).inject(output + "\n") do |output, child| + output + child.to_haml(tabs + 1, options) + end + end + + private + + def dynamic_attributes + @dynamic_attributes ||= begin + Haml::Util.map_hash(attr_hash) do |name, value| + next if value.empty? + full_match = nil + ruby_value = value.gsub(%r{\s*(.+?)\s*}) do + full_match = $`.empty? && $'.empty? + CGI.unescapeHTML(full_match ? $1: "\#{#{$1}}") + end + next if ruby_value == value + [name, full_match ? ruby_value : %("#{ruby_value}")] + end + end + end + + def haml_tag_loud(text) + "= #{text.gsub(/\n\s*/, ' ').strip}\n" + end + + def haml_tag_silent(text) + text.split("\n").map { |line| "- #{line.strip}\n" }.join + end + + def static_attribute?(name, options) + attr_hash[name] and !dynamic_attribute?(name, options) + end + + def dynamic_attribute?(name, options) + options[:rhtml] and dynamic_attributes.key?(name) + end + + def static_id?(options) + static_attribute?('id', options) + end + + def static_classname?(options) + static_attribute?('class', options) + end + + # Returns a string representation of an attributes hash + # that's prettier than that produced by Hash#inspect + def haml_attributes(options) + attrs = attr_hash.map do |name, value| + value = dynamic_attribute?(name, options) ? dynamic_attributes[name] : value.inspect + name = name.index(/\W/) ? name.inspect : ":#{name}" + "#{name} => #{value}" + end + "{ #{attrs.join(', ')} }" + end + end + + private + + def match_to_html(string, regex, tag) + string.gsub!(regex) do + "#{CGI.escapeHTML($1)}" + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/precompiler.rb b/vendor/gems/haml-2.2.16/lib/haml/precompiler.rb new file mode 100644 index 0000000..a7dadb0 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/precompiler.rb @@ -0,0 +1,1043 @@ +require 'strscan' +require 'haml/shared' + +module Haml + # Handles the internal pre-compilation from Haml into Ruby code, + # which then runs the final creation of the HTML string. + module Precompiler + include Haml::Util + + # Designates an XHTML/XML element. + ELEMENT = ?% + + # Designates a `
    ` element with the given class. + DIV_CLASS = ?. + + # Designates a `
    ` element with the given id. + DIV_ID = ?# + + # Designates an XHTML/XML comment. + COMMENT = ?/ + + # Designates an XHTML doctype or script that is never HTML-escaped. + DOCTYPE = ?! + + # Designates script, the result of which is output. + SCRIPT = ?= + + # Designates script that is always HTML-escaped. + SANITIZE = ?& + + # Designates script, the result of which is flattened and output. + FLAT_SCRIPT = ?~ + + # Designates script which is run but not output. + SILENT_SCRIPT = ?- + + # When following SILENT_SCRIPT, designates a comment that is not output. + SILENT_COMMENT = ?# + + # Designates a non-parsed line. + ESCAPE = ?\\ + + # Designates a block of filtered text. + FILTER = ?: + + # Designates a non-parsed line. Not actually a character. + PLAIN_TEXT = -1 + + # Keeps track of the ASCII values of the characters that begin a + # specially-interpreted line. + SPECIAL_CHARACTERS = [ + ELEMENT, + DIV_CLASS, + DIV_ID, + COMMENT, + DOCTYPE, + SCRIPT, + SANITIZE, + FLAT_SCRIPT, + SILENT_SCRIPT, + ESCAPE, + FILTER + ] + + # The value of the character that designates that a line is part + # of a multiline string. + MULTILINE_CHAR_VALUE = ?| + + # Regex to match keywords that appear in the middle of a Ruby block + # with lowered indentation. + # If a block has been started using indentation, + # lowering the indentation with one of these won't end the block. + # For example: + # + # - if foo + # %p yes! + # - else + # %p no! + # + # The block is ended after `%p no!`, because `else` + # is a member of this array. + MID_BLOCK_KEYWORD_REGEX = /^-\s*(#{%w[else elsif rescue ensure when end].join('|')})\b/ + + # The Regex that matches a Doctype command. + DOCTYPE_REGEX = /(\d(?:\.\d)?)?[\s]*([a-z]*)/i + + # The Regex that matches a literal string or symbol value + LITERAL_VALUE_REGEX = /:(\w*)|(["'])((?![\\#]|\2).|\\.)*\2/ + + private + + # Returns the precompiled string with the preamble and postamble + def precompiled_with_ambles(local_names) + preamble = < 1 + raise SyntaxError.new("The line was indented #{@next_line.tabs - @line.tabs} levels deeper than the previous line.", @next_line.index) + end + + resolve_newlines unless @next_line.eod? + @line = @next_line + newline unless @next_line.eod? + end + + # Close all the open tags + close until @to_close_stack.empty? + flush_merged_text + end + + # Processes and deals with lowering indentation. + def process_indent(line) + return unless line.tabs <= @template_tabs && @template_tabs > 0 + + to_close = @template_tabs - line.tabs + to_close.times {|i| close unless to_close - 1 - i == 0 && mid_block_keyword?(line.text)} + end + + # Processes a single line of Haml. + # + # This method doesn't return anything; it simply processes the line and + # adds the appropriate code to `@precompiled`. + def process_line(text, index) + @index = index + 1 + + case text[0] + when DIV_CLASS; render_div(text) + when DIV_ID + return push_plain(text) if text[1] == ?{ + render_div(text) + when ELEMENT; render_tag(text) + when COMMENT; render_comment(text[1..-1].strip) + when SANITIZE + return push_plain(text[3..-1].strip, :escape_html => true) if text[1..2] == "==" + return push_script(text[2..-1].strip, :escape_html => true) if text[1] == SCRIPT + return push_flat_script(text[2..-1].strip, :escape_html => true) if text[1] == FLAT_SCRIPT + return push_plain(text[1..-1].strip, :escape_html => true) if text[1] == ?\s + push_plain text + when SCRIPT + return push_plain(text[2..-1].strip) if text[1] == SCRIPT + push_script(text[1..-1]) + when FLAT_SCRIPT; push_flat_script(text[1..-1]) + when SILENT_SCRIPT + return start_haml_comment if text[1] == SILENT_COMMENT + + raise SyntaxError.new(< false) if text[1..2] == "==" + return push_script(text[2..-1].strip, :escape_html => false) if text[1] == SCRIPT + return push_flat_script(text[2..-1].strip, :escape_html => false) if text[1] == FLAT_SCRIPT + return push_plain(text[1..-1].strip, :escape_html => false) if text[1] == ?\s + push_plain text + when ESCAPE; push_plain text[1..-1] + else push_plain text + end + end + + # If the text is a silent script text with one of Ruby's mid-block keywords, + # returns the name of that keyword. + # Otherwise, returns nil. + def mid_block_keyword?(text) + text[MID_BLOCK_KEYWORD_REGEX, 1] + end + + # Evaluates `text` in the context of the scope object, but + # does not output the result. + def push_silent(text, can_suppress = false) + flush_merged_text + return if can_suppress && options[:suppress_eval] + @precompiled << "#{text};" + end + + # Adds `text` to `@buffer` with appropriate tabulation + # without parsing it. + def push_merged_text(text, tab_change = 0, indent = true) + text = !indent || @dont_indent_next_line || @options[:ugly] ? text : "#{' ' * @output_tabs}#{text}" + @to_merge << [:text, text, tab_change] + @dont_indent_next_line = false + end + + # Concatenate `text` to `@buffer` without tabulation. + def concat_merged_text(text) + @to_merge << [:text, text, 0] + end + + def push_text(text, tab_change = 0) + push_merged_text("#{text}\n", tab_change) + end + + def flush_merged_text + return if @to_merge.empty? + + text, tab_change = @to_merge.inject(["", 0]) do |(str, mtabs), (type, val, tabs)| + case type + when :text + [str << val.inspect[1...-1], mtabs + tabs] + when :script + if mtabs != 0 && !@options[:ugly] + val = "_hamlout.adjust_tabs(#{mtabs}); " + val + end + [str << "\#{#{val}}", 0] + else + raise SyntaxError.new("[HAML BUG] Undefined entry in Haml::Precompiler@to_merge.") + end + end + + @precompiled << + if @options[:ugly] + "_hamlout.buffer << \"#{text}\";" + else + "_hamlout.push_text(\"#{text}\", #{tab_change}, #{@dont_tab_up_next_text.inspect});" + end + @to_merge = [] + @dont_tab_up_next_text = false + end + + # Renders a block of text as plain text. + # Also checks for an illegally opened block. + def push_plain(text, options = {}) + if block_opened? + raise SyntaxError.new("Illegal nesting: nesting within plain text is illegal.", @next_line.index) + end + + if contains_interpolation?(text) + options[:escape_html] = self.options[:escape_html] if options[:escape_html].nil? + push_script( + unescape_interpolation(text, :escape_html => options[:escape_html]), + :escape_html => false) + else + push_text text + end + end + + # Adds +text+ to `@buffer` while flattening text. + def push_flat(line) + text = line.full.dup + text = "" unless text.gsub!(/^#{@flat_spaces}/, '') + @filter_buffer << "#{text}\n" + end + + # Causes `text` to be evaluated in the context of + # the scope object and the result to be added to `@buffer`. + # + # If `opts[:preserve_script]` is true, Haml::Helpers#find_and_flatten is run on + # the result before it is added to `@buffer` + def push_script(text, opts = {}) + raise SyntaxError.new("There's no Ruby code for = to evaluate.") if text.empty? + return if options[:suppress_eval] + opts[:escape_html] = options[:escape_html] if opts[:escape_html].nil? + + args = %w[preserve_script in_tag preserve_tag escape_html nuke_inner_whitespace] + args.map! {|name| opts[name.to_sym]} + args << !block_opened? << @options[:ugly] + + no_format = @options[:ugly] && + !(opts[:preserve_script] || opts[:preserve_tag] || opts[:escape_html]) + output_temp = "(haml_very_temp = haml_temp; haml_temp = nil; haml_very_temp)" + out = "_hamlout.#{static_method_name(:format_script, *args)}(#{output_temp});" + + # Prerender tabulation unless we're in a tag + push_merged_text '' unless opts[:in_tag] + + unless block_opened? + @to_merge << [:script, no_format ? "#{text}\n" : "haml_temp = #{text}\n#{out}"] + concat_merged_text("\n") unless opts[:in_tag] || opts[:nuke_inner_whitespace] + @newlines -= 1 + return + end + + flush_merged_text + + push_silent "haml_temp = #{text}" + newline_now + push_and_tabulate([:loud, "_hamlout.buffer << #{no_format ? "#{output_temp}.to_s;" : out}", + !(opts[:in_tag] || opts[:nuke_inner_whitespace] || @options[:ugly])]) + end + + # Causes `text` to be evaluated, and Haml::Helpers#find_and_flatten + # to be run on it afterwards. + def push_flat_script(text, options = {}) + flush_merged_text + + raise SyntaxError.new("There's no Ruby code for ~ to evaluate.") if text.empty? + push_script(text, options.merge(:preserve_script => true)) + end + + def start_haml_comment + return unless block_opened? + + @haml_comment = true + push_and_tabulate([:haml_comment]) + end + + # Closes the most recent item in `@to_close_stack`. + def close + tag, *rest = @to_close_stack.pop + send("close_#{tag}", *rest) + end + + # Puts a line in `@precompiled` that will add the closing tag of + # the most recently opened tag. + def close_element(value) + tag, nuke_outer_whitespace, nuke_inner_whitespace = value + @output_tabs -= 1 unless nuke_inner_whitespace + @template_tabs -= 1 + rstrip_buffer! if nuke_inner_whitespace + push_merged_text("" + (nuke_outer_whitespace ? "" : "\n"), + nuke_inner_whitespace ? 0 : -1, !nuke_inner_whitespace) + @dont_indent_next_line = nuke_outer_whitespace + end + + # Closes a Ruby block. + def close_script(_1, _2, push_end = true) + push_silent("end", true) if push_end + @template_tabs -= 1 + end + + # Closes a comment. + def close_comment(has_conditional) + @output_tabs -= 1 + @template_tabs -= 1 + close_tag = has_conditional ? "" : "-->" + push_text(close_tag, -1) + end + + # Closes a loud Ruby block. + def close_loud(command, add_newline, push_end = true) + push_silent('end', true) if push_end + @precompiled << command + @template_tabs -= 1 + concat_merged_text("\n") if add_newline + end + + # Closes a filtered block. + def close_filtered(filter) + filter.internal_compile(self, @filter_buffer) + @flat = false + @flat_spaces = nil + @filter_buffer = nil + @template_tabs -= 1 + end + + def close_haml_comment + @haml_comment = false + @template_tabs -= 1 + end + + def close_nil(*args) + @template_tabs -= 1 + end + + # Iterates through the classes and ids supplied through `.` + # and `#` syntax, and returns a hash with them as attributes, + # that can then be merged with another attributes hash. + def parse_class_and_id(list) + attributes = {} + list.scan(/([#.])([-_a-zA-Z0-9]+)/) do |type, property| + case type + when '.' + if attributes['class'] + attributes['class'] += " " + else + attributes['class'] = "" + end + attributes['class'] += property + when '#'; attributes['id'] = property + end + end + attributes + end + + def parse_static_hash(text) + attributes = {} + scanner = StringScanner.new(text) + scanner.scan(/\s+/) + until scanner.eos? + return unless key = scanner.scan(LITERAL_VALUE_REGEX) + return unless scanner.scan(/\s*=>\s*/) + return unless value = scanner.scan(LITERAL_VALUE_REGEX) + return unless scanner.scan(/\s*(?:,|$)\s*/) + attributes[eval(key).to_s] = eval(value).to_s + end + text.count("\n").times { newline } + attributes + end + + # This is a class method so it can be accessed from Buffer. + def self.build_attributes(is_html, attr_wrapper, attributes = {}) + quote_escape = attr_wrapper == '"' ? """ : "'" + other_quote_char = attr_wrapper == '"' ? "'" : '"' + + result = attributes.collect do |attr, value| + next if value.nil? + + if value == true + next " #{attr}" if is_html + next " #{attr}=#{attr_wrapper}#{attr}#{attr_wrapper}" + elsif value == false + next + end + + value = Haml::Helpers.preserve(Haml::Helpers.escape_once(value.to_s)) + # We want to decide whether or not to escape quotes + value.gsub!('"', '"') + this_attr_wrapper = attr_wrapper + if value.include? attr_wrapper + if value.include? other_quote_char + value = value.gsub(attr_wrapper, quote_escape) + else + this_attr_wrapper = other_quote_char + end + end + " #{attr}=#{this_attr_wrapper}#{value}#{this_attr_wrapper}" + end + result.compact.sort.join + end + + def prerender_tag(name, self_close, attributes) + attributes_string = Precompiler.build_attributes(html?, @options[:attr_wrapper], attributes) + "<#{name}#{attributes_string}#{self_close && xhtml? ? ' /' : ''}>" + end + + # Parses a line into tag_name, attributes, attributes_hash, object_ref, action, value + def parse_tag(line) + raise SyntaxError.new("Invalid tag: \"#{line}\".") unless match = line.scan(/%([-:\w]+)([-\w\.\#]*)(.*)/)[0] + tag_name, attributes, rest = match + new_attributes_hash = old_attributes_hash = last_line = object_ref = nil + attributes_hashes = [] + while rest + case rest[0] + when ?{ + break if old_attributes_hash + old_attributes_hash, rest, last_line = parse_old_attributes(rest) + attributes_hashes << [:old, old_attributes_hash] + when ?( + break if new_attributes_hash + new_attributes_hash, rest, last_line = parse_new_attributes(rest) + attributes_hashes << [:new, new_attributes_hash] + when ?[ + break if object_ref + object_ref, rest = balance(rest, ?[, ?]) + else; break + end + end + + if rest + nuke_whitespace, action, value = rest.scan(/(<>|><|[><])?([=\/\~&!])?(.*)?/)[0] + nuke_whitespace ||= '' + nuke_outer_whitespace = nuke_whitespace.include? '>' + nuke_inner_whitespace = nuke_whitespace.include? '<' + end + + value = value.to_s.strip + [tag_name, attributes, attributes_hashes, object_ref, nuke_outer_whitespace, + nuke_inner_whitespace, action, value, last_line || @index] + end + + def parse_old_attributes(line) + line = line.dup + last_line = @index + + begin + attributes_hash, rest = balance(line, ?{, ?}) + rescue SyntaxError => e + if line.strip[-1] == ?, && e.message == "Unbalanced brackets." + line << "\n" << @next_line.text + last_line += 1 + next_line + retry + end + + raise e + end + + attributes_hash = attributes_hash[1...-1] if attributes_hash + return attributes_hash, rest, last_line + end + + def parse_new_attributes(line) + line = line.dup + scanner = StringScanner.new(line) + last_line = @index + attributes = {} + + scanner.scan(/\(\s*/) + loop do + name, value = parse_new_attribute(scanner) + break if name.nil? + + if name == false + text = (Haml::Shared.balance(line, ?(, ?)) || [line]).first + raise Haml::SyntaxError.new("Invalid attribute list: #{text.inspect}.", last_line - 1) + end + attributes[name] = value + scanner.scan(/\s*/) + + if scanner.eos? + line << " " << @next_line.text + last_line += 1 + next_line + scanner.scan(/\s*/) + end + end + + static_attributes = {} + dynamic_attributes = "{" + attributes.each do |name, (type, val)| + if type == :static + static_attributes[name] = val + else + dynamic_attributes << name.inspect << " => " << val << "," + end + end + dynamic_attributes << "}" + dynamic_attributes = nil if dynamic_attributes == "{}" + + return [static_attributes, dynamic_attributes], scanner.rest, last_line + end + + def parse_new_attribute(scanner) + unless name = scanner.scan(/[-:\w]+/) + return if scanner.scan(/\)/) + return false + end + + scanner.scan(/\s*/) + return name, [:static, true] unless scanner.scan(/=/) #/end + + scanner.scan(/\s*/) + unless quote = scanner.scan(/["']/) + return false unless var = scanner.scan(/(@@?|\$)?\w+/) + return name, [:dynamic, var] + end + + re = /((?:\\.|\#[^{]|[^#{quote}\\#])*#?)(#{quote}|#\{)/ + content = [] + loop do + return false unless scanner.scan(re) + content << [:str, scanner[1].gsub(/\\(.)/, '\1')] + break if scanner[2] == quote + content << [:ruby, balance(scanner, ?{, ?}, 1).first[0...-1]] + end + + return name, [:static, content.first[1]] if content.size == 1 + return name, [:dynamic, + '"' + content.map {|(t, v)| t == :str ? v.inspect[1...-1] : "\#{#{v}}"}.join + '"'] + end + + # Parses a line that will render as an XHTML tag, and adds the code that will + # render that tag to `@precompiled`. + def render_tag(line) + tag_name, attributes, attributes_hashes, object_ref, nuke_outer_whitespace, + nuke_inner_whitespace, action, value, last_line = parse_tag(line) + + raise SyntaxError.new("Illegal element: classes and ids must have values.") if attributes =~ /[\.#](\.|#|\z)/ + + # Get rid of whitespace outside of the tag if we need to + rstrip_buffer! if nuke_outer_whitespace + + preserve_tag = options[:preserve].include?(tag_name) + nuke_inner_whitespace ||= preserve_tag + preserve_tag &&= !options[:ugly] + + escape_html = (action == '&' || (action != '!' && @options[:escape_html])) + + case action + when '/'; self_closing = true + when '~'; parse = preserve_script = true + when '=' + parse = true + if value[0] == ?= + value = unescape_interpolation(value[1..-1].strip, :escape_html => escape_html) + escape_html = false + end + when '&', '!' + if value[0] == ?= || value[0] == ?~ + parse = true + preserve_script = (value[0] == ?~) + if value[1] == ?= + value = unescape_interpolation(value[2..-1].strip, :escape_html => escape_html) + escape_html = false + else + value = value[1..-1].strip + end + elsif contains_interpolation?(value) + value = unescape_interpolation(value, :escape_html => escape_html) + parse = true + escape_html = false + end + else + if contains_interpolation?(value) + value = unescape_interpolation(value, :escape_html => escape_html) + parse = true + escape_html = false + end + end + + if parse && @options[:suppress_eval] + parse = false + value = '' + end + + object_ref = "nil" if object_ref.nil? || @options[:suppress_eval] + + attributes = parse_class_and_id(attributes) + attributes_hashes.map! do |syntax, attributes_hash| + if syntax == :old + static_attributes = parse_static_hash(attributes_hash) + attributes_hash = nil if static_attributes || @options[:suppress_eval] + else + static_attributes, attributes_hash = attributes_hash + end + Buffer.merge_attrs(attributes, static_attributes) if static_attributes + attributes_hash + end.compact! + + raise SyntaxError.new("Illegal nesting: nesting within a self-closing tag is illegal.", @next_line.index) if block_opened? && self_closing + raise SyntaxError.new("Illegal nesting: content can't be both given on the same line as %#{tag_name} and nested within it.", @next_line.index) if block_opened? && !value.empty? + raise SyntaxError.new("There's no Ruby code for #{action} to evaluate.", last_line - 1) if parse && value.empty? + raise SyntaxError.new("Self-closing tags can't have content.", last_line - 1) if self_closing && !value.empty? + + self_closing ||= !!( !block_opened? && value.empty? && @options[:autoclose].include?(tag_name) ) + value = nil if value.empty? && (block_opened? || self_closing) + + dont_indent_next_line = + (nuke_outer_whitespace && !block_opened?) || + (nuke_inner_whitespace && block_opened?) + + # Check if we can render the tag directly to text and not process it in the buffer + if object_ref == "nil" && attributes_hashes.empty? && !preserve_script + tag_closed = !block_opened? && !self_closing && !parse + + open_tag = prerender_tag(tag_name, self_closing, attributes) + if tag_closed + open_tag << "#{value}" + open_tag << "\n" unless nuke_outer_whitespace + else + open_tag << "\n" unless parse || nuke_inner_whitespace || (self_closing && nuke_outer_whitespace) + end + + push_merged_text(open_tag, tag_closed || self_closing || nuke_inner_whitespace ? 0 : 1, + !nuke_outer_whitespace) + + @dont_indent_next_line = dont_indent_next_line + return if tag_closed + else + flush_merged_text + content = parse ? 'nil' : value.inspect + if attributes_hashes.empty? + attributes_hashes = '' + elsif attributes_hashes.size == 1 + attributes_hashes = ", #{attributes_hashes.first}" + else + attributes_hashes = ", (#{attributes_hashes.join(").merge(")})" + end + + args = [tag_name, self_closing, !block_opened?, preserve_tag, escape_html, + attributes, nuke_outer_whitespace, nuke_inner_whitespace + ].map { |v| v.inspect }.join(', ') + push_silent "_hamlout.open_tag(#{args}, #{object_ref}, #{content}#{attributes_hashes})" + @dont_tab_up_next_text = @dont_indent_next_line = dont_indent_next_line + end + + return if self_closing + + if value.nil? + push_and_tabulate([:element, [tag_name, nuke_outer_whitespace, nuke_inner_whitespace]]) + @output_tabs += 1 unless nuke_inner_whitespace + return + end + + if parse + push_script(value, :preserve_script => preserve_script, :in_tag => true, + :preserve_tag => preserve_tag, :escape_html => escape_html, + :nuke_inner_whitespace => nuke_inner_whitespace) + concat_merged_text("" + (nuke_outer_whitespace ? "" : "\n")) + end + end + + # Renders a line that creates an XHTML tag and has an implicit div because of + # `.` or `#`. + def render_div(line) + render_tag('%div' + line) + end + + # Renders an XHTML comment. + def render_comment(line) + conditional, line = balance(line, ?[, ?]) if line[0] == ?[ + line.strip! + conditional << ">" if conditional + + if block_opened? && !line.empty? + raise SyntaxError.new('Illegal nesting: nesting within a tag that already has content is illegal.', @next_line.index) + end + + open = "" : "-->"}") + end + + push_text(open, 1) + @output_tabs += 1 + push_and_tabulate([:comment, !conditional.nil?]) + unless line.empty? + push_text(line) + close + end + end + + # Renders an XHTML doctype or XML shebang. + def render_doctype(line) + raise SyntaxError.new("Illegal nesting: nesting within a header command is illegal.", @next_line.index) if block_opened? + doctype = text_for_doctype(line) + push_text doctype if doctype + end + + def text_for_doctype(text) + text = text[3..-1].lstrip.downcase + if text.index("xml") == 0 + return nil if html? + wrapper = @options[:attr_wrapper] + return "" + end + + if html5? + '' + else + version, type = text.scan(DOCTYPE_REGEX)[0] + + if xhtml? + if version == "1.1" + '' + elsif version == "5" + '' + else + case type + when "strict"; '' + when "frameset"; '' + when "mobile"; '' + when "basic"; '' + else '' + end + end + + elsif html4? + case type + when "strict"; '' + when "frameset"; '' + else '' + end + end + end + end + + # Starts a filtered block. + def start_filtered(name) + raise Error.new("Invalid filter name \":#{name}\".") unless name =~ /^\w+$/ + raise Error.new("Filter \"#{name}\" is not defined.") unless filter = Filters.defined[name] + + push_and_tabulate([:filtered, filter]) + @flat = true + @filter_buffer = String.new + + # If we don't know the indentation by now, it'll be set in Line#tabs + @flat_spaces = @indentation * @template_tabs if @indentation + end + + def raw_next_line + text = @template.shift + return unless text + + index = @template_index + @template_index += 1 + + return text, index + end + + def next_line + text, index = raw_next_line + return unless text + + # :eod is a special end-of-document marker + line = + if text == :eod + Line.new '-#', '-#', '-#', index, self, true + else + Line.new text.strip, text.lstrip.chomp, text, index, self, false + end + + # `flat?' here is a little outdated, + # so we have to manually check if either the previous or current line + # closes the flat block, + # as well as whether a new block is opened + @line.tabs if @line + unless (flat? && !closes_flat?(line) && !closes_flat?(@line)) || + (@line && @line.text[0] == ?: && line.full =~ %r[^#{@line.full[/^\s+/]}\s]) + if line.text.empty? + newline + return next_line + end + + handle_multiline(line) + end + + @next_line = line + end + + def closes_flat?(line) + line && !line.text.empty? && line.full !~ /^#{@flat_spaces}/ + end + + def un_next_line(line) + @template.unshift line + @template_index -= 1 + end + + def handle_multiline(line) + if is_multiline?(line.text) + line.text.slice!(-1) + while new_line = raw_next_line.first + break if new_line == :eod + newline and next if new_line.strip.empty? + break unless is_multiline?(new_line.strip) + line.text << new_line.strip[0...-1] + newline + end + un_next_line new_line + resolve_newlines + end + end + + # Checks whether or not +line+ is in a multiline sequence. + def is_multiline?(text) + text && text.length > 1 && text[-1] == MULTILINE_CHAR_VALUE && text[-2] == ?\s + end + + def contains_interpolation?(str) + str.include?('#{') + end + + def unescape_interpolation(str, opts = {}) + res = '' + rest = Haml::Shared.handle_interpolation str.dump do |scan| + escapes = (scan[2].size - 1) / 2 + res << scan.matched[0...-3 - escapes] + if escapes % 2 == 1 + res << '#{' + else + content = eval('"' + balance(scan, ?{, ?}, 1)[0][0...-1] + '"') + content = "Haml::Helpers.html_escape(#{content})" if opts[:escape_html] + res << '#{' + content + "}"# Use eval to get rid of string escapes + end + end + res + rest + end + + def balance(*args) + res = Haml::Shared.balance(*args) + return res if res + raise SyntaxError.new("Unbalanced brackets.") + end + + def block_opened? + !flat? && @next_line.tabs > @line.tabs + end + + # Pushes value onto `@to_close_stack` and increases + # `@template_tabs`. + def push_and_tabulate(value) + @to_close_stack.push(value) + @template_tabs += 1 + end + + def flat? + @flat + end + + def newline + @newlines += 1 + end + + def newline_now + @precompiled << "\n" + @newlines -= 1 + end + + def resolve_newlines + return unless @newlines > 0 + flush_merged_text unless @to_merge.all? {|type, *_| type == :text} + @precompiled << "\n" * @newlines + @newlines = 0 + end + + # Get rid of and whitespace at the end of the buffer + # or the merged text + def rstrip_buffer!(index = -1) + last = @to_merge[index] + if last.nil? + push_silent("_hamlout.rstrip!", false) + @dont_tab_up_next_text = true + return + end + + case last.first + when :text + last[1].rstrip! + if last[1].empty? + @to_merge.slice! index + rstrip_buffer! index + end + when :script + last[1].gsub!(/\(haml_temp, (.*?)\);$/, '(haml_temp.rstrip, \1);') + rstrip_buffer! index - 1 + else + raise SyntaxError.new("[HAML BUG] Undefined entry in Haml::Precompiler@to_merge.") + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/shared.rb b/vendor/gems/haml-2.2.16/lib/haml/shared.rb new file mode 100644 index 0000000..f031fc4 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/shared.rb @@ -0,0 +1,78 @@ +require 'strscan' + +module Haml + # This module contains functionality that's shared between Haml and Sass. + module Shared + extend self + + # Scans through a string looking for the interoplation-opening `#{` + # and, when it's found, yields the scanner to the calling code + # so it can handle it properly. + # + # The scanner will have any backslashes immediately in front of the `#{` + # as the second capture group (`scan[2]`), + # and the text prior to that as the first (`scan[1]`). + # + # @yieldparam scan [StringScanner] The scanner scanning through the string + # @return [String] The text remaining in the scanner after all `#{`s have been processed + def handle_interpolation(str) + scan = StringScanner.new(str) + yield scan while scan.scan(/(.*?)(\\*)\#\{/) + scan.rest + end + + # Moves a scanner through a balanced pair of characters. + # For example: + # + # Foo (Bar (Baz bang) bop) (Bang (bop bip)) + # ^ ^ + # from to + # + # @param scanner [StringScanner] The string scanner to move + # @param start [Character] The character opening the balanced pair. + # A `Fixnum` in 1.8, a `String` in 1.9 + # @param finish [Character] The character closing the balanced pair. + # A `Fixnum` in 1.8, a `String` in 1.9 + # @param count [Fixnum] The number of opening characters matched + # before calling this method + # @return [(String, String)] The string matched within the balanced pair + # and the rest of the string. + # `["Foo (Bar (Baz bang) bop)", " (Bang (bop bip))"]` in the example above. + def balance(scanner, start, finish, count = 0) + str = '' + scanner = StringScanner.new(scanner) unless scanner.is_a? StringScanner + regexp = Regexp.new("(.*?)[\\#{start.chr}\\#{finish.chr}]", Regexp::MULTILINE) + while scanner.scan(regexp) + str << scanner.matched + count += 1 if scanner.matched[-1] == start + count -= 1 if scanner.matched[-1] == finish + return [str.strip, scanner.rest] if count == 0 + end + end + + # Formats a string for use in error messages about indentation. + # + # @param indentation [String] The string used for indentation + # @param was [Boolean] Whether or not to add `"was"` or `"were"` + # (depending on how many characters were in `indentation`) + # @return [String] The name of the indentation (e.g. `"12 spaces"`, `"1 tab"`) + def human_indentation(indentation, was = false) + if !indentation.include?(?\t) + noun = 'space' + elsif !indentation.include?(?\s) + noun = 'tab' + else + return indentation.inspect + (was ? ' was' : '') + end + + singular = indentation.length == 1 + if was + was = singular ? ' was' : ' were' + else + was = '' + end + + "#{indentation.length} #{noun}#{'s' unless singular}#{was}" + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/template.rb b/vendor/gems/haml-2.2.16/lib/haml/template.rb new file mode 100644 index 0000000..1aa26a4 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/template.rb @@ -0,0 +1,85 @@ +require 'haml/engine' + +module Haml + # The class that keeps track of the global options for Haml within Rails. + module Template + extend self + + @options = {} + # The options hash for Haml when used within Rails. + # See {file:HAML_REFERENCE.md#haml_options the Haml options documentation}. + # + # @return [{Symbol => Object}] + attr_accessor :options + + # Enables integration with the Rails 2.2.5+ XSS protection, + # if it's available and enabled. + # + # @return [Boolean] Whether the XSS integration was enabled. + def try_enabling_xss_integration + return false unless ActionView::Base.respond_to?(:xss_safe?) && ActionView::Base.xss_safe? + + Haml::Template.options[:escape_html] = true + + Haml::Util.module_eval {def rails_xss_safe?; true; end} + + require 'haml/helpers/xss_mods' + Haml::Helpers.send(:include, Haml::Helpers::XssMods) + + Haml::Precompiler.module_eval do + def precompiled_method_return_value_with_haml_xss + "(#{precompiled_method_return_value_without_haml_xss}).html_safe!" + end + alias_method :precompiled_method_return_value_without_haml_xss, :precompiled_method_return_value + alias_method :precompiled_method_return_value, :precompiled_method_return_value_with_haml_xss + end + + true + end + end +end + +if defined?(RAILS_ENV) && RAILS_ENV == "production" + Haml::Template.options[:ugly] = true +end + +# Decide how we want to load Haml into Rails. +# Patching was necessary for versions <= 2.0.1, +# but we can make it a normal handler for higher versions. +if defined?(ActionView::TemplateHandler) || defined?(ActionView::Template::Handler) + require 'haml/template/plugin' +else + require 'haml/template/patch' +end + +# Enable XSS integration. Use Rails' after_initialize method if possible +# so that integration will be checked after the rails_xss plugin is loaded +# (for Rails 2.3.* where it's not enabled by default). +if defined?(Rails.configuration.after_initialize) + Rails.configuration.after_initialize {Haml::Template.try_enabling_xss_integration} +else + Haml::Template.try_enabling_xss_integration +end + +if Haml::Util.rails_root + # Update init.rb to the current version + # if it's out of date. + # + # We can probably remove this as of v1.9, + # because the new init file is sufficiently flexible + # to not need updating. + rails_init_file = File.join(Haml::Util.rails_root, 'vendor', 'plugins', 'haml', 'init.rb') + haml_init_file = Haml::Util.scope('init.rb') + begin + if File.exists?(rails_init_file) + require 'fileutils' + FileUtils.cp(haml_init_file, rails_init_file) unless FileUtils.cmp(rails_init_file, haml_init_file) + end + rescue SystemCallError + warn < e + if logger + logger.debug "ERROR: compiling #{render_symbol} RAISED #{e}" + logger.debug "Backtrace: #{e.backtrace.join("\n")}" + end + + base_path = if defined?(extract_base_path_from) + # Rails 2.0.x + extract_base_path_from(file_name) || view_paths.first + else + # Rails <=1.2.6 + @base_path + end + raise ActionView::TemplateError.new(base_path, file_name || template, @assigns, template, e) + end + + @@compile_time[render_symbol] = Time.now + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/template/plugin.rb b/vendor/gems/haml-2.2.16/lib/haml/template/plugin.rb new file mode 100644 index 0000000..a270a38 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/template/plugin.rb @@ -0,0 +1,75 @@ +# This file makes Haml work with Rails +# using the > 2.0.1 template handler API. + +module Haml + class Plugin < Haml::Util.av_template_class(:Handler) + if defined?(ActionView::TemplateHandlers::Compilable) || + defined?(ActionView::Template::Handlers::Compilable) + include Haml::Util.av_template_class(:Handlers)::Compilable + end + + def compile(template) + options = Haml::Template.options.dup + + # template is a template object in Rails >=2.1.0, + # a source string previously + if template.respond_to? :source + # Template has a generic identifier in Rails >=3.0.0 + options[:filename] = template.respond_to?(:identifier) ? template.identifier : template.filename + source = template.source + else + source = template + end + + Haml::Engine.new(source, options).send(:precompiled_with_ambles, []) + end + + def cache_fragment(block, name = {}, options = nil) + @view.fragment_for(block, name, options) do + eval("_hamlout.buffer", block.binding) + end + end + end +end + +if defined? ActionView::Template and ActionView::Template.respond_to? :register_template_handler + ActionView::Template +else + ActionView::Base +end.register_template_handler(:haml, Haml::Plugin) + +# In Rails 2.0.2, ActionView::TemplateError took arguments +# that we can't fill in from the Haml::Plugin context. +# Thus, we've got to monkeypatch ActionView::Base to catch the error. +if defined?(ActionView::TemplateError) && + ActionView::TemplateError.instance_method(:initialize).arity == 5 + class ActionView::Base + def compile_template(handler, template, file_name, local_assigns) + render_symbol = assign_method_name(handler, template, file_name) + + # Move begin up two lines so it captures compilation exceptions. + begin + render_source = create_template_source(handler, template, render_symbol, local_assigns.keys) + line_offset = @@template_args[render_symbol].size + handler.line_offset + + file_name = 'compiled-template' if file_name.blank? + CompiledTemplates.module_eval(render_source, file_name, -line_offset) + rescue Exception => e # errors from template code + if logger + logger.debug "ERROR: compiling #{render_symbol} RAISED #{e}" + logger.debug "Function body: #{render_source}" + logger.debug "Backtrace: #{e.backtrace.join("\n")}" + end + + # There's no way to tell Haml about the filename, + # so we've got to insert it ourselves. + e.backtrace[0].gsub!('(haml)', file_name) if e.is_a?(Haml::Error) + + raise ActionView::TemplateError.new(extract_base_path_from(file_name) || view_paths.first, file_name || template, @assigns, template, e) + end + + @@compile_time[render_symbol] = Time.now + # logger.debug "Compiled template #{file_name || template}\n ==> #{render_symbol}" if logger + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/util.rb b/vendor/gems/haml-2.2.16/lib/haml/util.rb new file mode 100644 index 0000000..4cf3721 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/util.rb @@ -0,0 +1,289 @@ +require 'erb' +require 'set' +require 'enumerator' +require 'stringio' + +module Haml + # A module containing various useful functions. + module Util + extend self + + # An array of ints representing the Ruby version number. + RUBY_VERSION = ::RUBY_VERSION.split(".").map {|s| s.to_i} + + # Returns the path of a file relative to the Haml root directory. + # + # @param file [String] The filename relative to the Haml root + # @return [String] The filename relative to the the working directory + def scope(file) + File.join(File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__)))), file) + end + + # Converts an array of `[key, value]` pairs to a hash. + # For example: + # + # to_hash([[:foo, "bar"], [:baz, "bang"]]) + # #=> {:foo => "bar", :baz => "bang"} + # + # @param arr [Array<(Object, Object)>] An array of pairs + # @return [Hash] A hash + def to_hash(arr) + arr.compact.inject({}) {|h, (k, v)| h[k] = v; h} + end + + # Maps the keys in a hash according to a block. + # For example: + # + # map_keys({:foo => "bar", :baz => "bang"}) {|k| k.to_s} + # #=> {"foo" => "bar", "baz" => "bang"} + # + # @param hash [Hash] The hash to map + # @yield [key] A block in which the keys are transformed + # @yieldparam key [Object] The key that should be mapped + # @yieldreturn [Object] The new value for the key + # @return [Hash] The mapped hash + # @see #map_vals + # @see #map_hash + def map_keys(hash) + to_hash(hash.map {|k, v| [yield(k), v]}) + end + + # Maps the values in a hash according to a block. + # For example: + # + # map_values({:foo => "bar", :baz => "bang"}) {|v| v.to_sym} + # #=> {:foo => :bar, :baz => :bang} + # + # @param hash [Hash] The hash to map + # @yield [value] A block in which the values are transformed + # @yieldparam value [Object] The value that should be mapped + # @yieldreturn [Object] The new value for the value + # @return [Hash] The mapped hash + # @see #map_keys + # @see #map_hash + def map_vals(hash) + to_hash(hash.map {|k, v| [k, yield(v)]}) + end + + # Maps the key-value pairs of a hash according to a block. + # For example: + # + # map_hash({:foo => "bar", :baz => "bang"}) {|k, v| [k.to_s, v.to_sym]} + # #=> {"foo" => :bar, "baz" => :bang} + # + # @param hash [Hash] The hash to map + # @yield [key, value] A block in which the key-value pairs are transformed + # @yieldparam [key] The hash key + # @yieldparam [value] The hash value + # @yieldreturn [(Object, Object)] The new value for the `[key, value]` pair + # @return [Hash] The mapped hash + # @see #map_keys + # @see #map_vals + def map_hash(hash, &block) + to_hash(hash.map(&block)) + end + + # Computes the powerset of the given array. + # This is the set of all subsets of the array. + # For example: + # + # powerset([1, 2, 3]) #=> + # Set[Set[], Set[1], Set[2], Set[3], Set[1, 2], Set[2, 3], Set[1, 3], Set[1, 2, 3]] + # + # @param arr [Enumerable] + # @return [Set] The subsets of `arr` + def powerset(arr) + arr.inject([Set.new].to_set) do |powerset, el| + new_powerset = Set.new + powerset.each do |subset| + new_powerset << subset + new_powerset << subset + [el] + end + new_powerset + end + end + + # Concatenates all strings that are adjacent in an array, + # while leaving other elements as they are. + # For example: + # + # merge_adjacent_strings([1, "foo", "bar", 2, "baz"]) + # #=> [1, "foobar", 2, "baz"] + # + # @param enum [Enumerable] + # @return [Array] The enumerable with strings merged + def merge_adjacent_strings(enum) + e = enum.inject([]) do |a, e| + if e.is_a?(String) && a.last.is_a?(String) + a.last << e + else + a << e + end + a + end + end + + # Silence all output to STDERR within a block. + # + # @yield A block in which no output will be printed to STDERR + def silence_warnings + the_real_stderr, $stderr = $stderr, StringIO.new + yield + ensure + $stderr = the_real_stderr + end + + ## Cross Rails Version Compatibility + + # Returns the root of the Rails application, + # if this is running in a Rails context. + # Returns `nil` if no such root is defined. + # + # @return [String, nil] + def rails_root + return Rails.root.to_s if defined?(Rails.root) + return RAILS_ROOT.to_s if defined?(RAILS_ROOT) + return nil + end + + # Returns an ActionView::Template* class. + # In pre-3.0 versions of Rails, most of these classes + # were of the form `ActionView::TemplateFoo`, + # while afterwards they were of the form `ActionView;:Template::Foo`. + # + # @param name [#to_s] The name of the class to get. + # For example, `:Error` will return `ActionView::TemplateError` + # or `ActionView::Template::Error`. + def av_template_class(name) + return ActionView.const_get("Template#{name}") if ActionView.const_defined?("Template#{name}") + return ActionView::Template.const_get(name.to_s) + end + + ## Rails XSS Safety + + # Whether or not ActionView's XSS protection is available and enabled, + # as is the default for Rails 3.0+, and optional for version 2.3.5+. + # Overridden in haml/template.rb if this is the case. + # + # @return [Boolean] + def rails_xss_safe? + false + end + + # Assert that a given object (usually a String) is HTML safe + # according to Rails' XSS handling, if it's loaded. + # + # @param text [Object] + def assert_html_safe!(text) + return unless rails_xss_safe? && text && !text.to_s.html_safe? + raise Haml::Error.new("Expected #{text.inspect} to be HTML-safe.") + end + + ## Cross-Ruby-Version Compatibility + + # Whether or not this is running under Ruby 1.8 or lower. + # + # @return [Boolean] + def ruby1_8? + Haml::Util::RUBY_VERSION[0] == 1 && Haml::Util::RUBY_VERSION[1] < 9 + end + + # Checks to see if a class has a given method. + # For example: + # + # Haml::Util.has?(:public_instance_method, String, :gsub) #=> true + # + # Method collections like `Class#instance_methods` + # return strings in Ruby 1.8 and symbols in Ruby 1.9 and on, + # so this handles checking for them in a compatible way. + # + # @param attr [#to_s] The (singular) name of the method-collection method + # (e.g. `:instance_methods`, `:private_methods`) + # @param klass [Module] The class to check the methods of which to check + # @param method [String, Symbol] The name of the method do check for + # @return [Boolean] Whether or not the given collection has the given method + def has?(attr, klass, method) + klass.send("#{attr}s").include?(ruby1_8? ? method.to_s : method.to_sym) + end + + # A version of `Enumerable#enum_with_index` that works in Ruby 1.8 and 1.9. + # + # @param enum [Enumerable] The enumerable to get the enumerator for + # @return [Enumerator] The with-index enumerator + def enum_with_index(enum) + ruby1_8? ? enum.enum_with_index : enum.each_with_index + end + + ## Static Method Stuff + + # The context in which the ERB for \{#def\_static\_method} will be run. + class StaticConditionalContext + # @param set [#include?] The set of variables that are defined for this context. + def initialize(set) + @set = set + end + + # Checks whether or not a variable is defined for this context. + # + # @param name [Symbol] The name of the variable + # @return [Boolean] + def method_missing(name, *args, &block) + super unless args.empty? && block.nil? + @set.include?(name) + end + end + + # This is used for methods in {Haml::Buffer} that need to be very fast, + # and take a lot of boolean parameters + # that are known at compile-time. + # Instead of passing the parameters in normally, + # a separate method is defined for every possible combination of those parameters; + # these are then called using \{#static\_method\_name}. + # + # To define a static method, an ERB template for the method is provided. + # All conditionals based on the static parameters + # are done as embedded Ruby within this template. + # For example: + # + # def_static_method(Foo, :my_static_method, [:foo, :bar], :baz, :bang, < + # return foo + bar + # <% elsif baz || bang %> + # return foo - bar + # <% else %> + # return 17 + # <% end %> + # RUBY + # + # \{#static\_method\_name} can be used to call static methods. + # + # @overload def_static_method(klass, name, args, *vars, erb) + # @param klass [Module] The class on which to define the static method + # @param name [#to_s] The (base) name of the static method + # @param args [Array] The names of the arguments to the defined methods + # (**not** to the ERB template) + # @param vars [Array] The names of the static boolean variables + # to be made available to the ERB template + # @param erb [String] The template for the method code + def def_static_method(klass, name, args, *vars) + erb = vars.pop + powerset(vars).each do |set| + context = StaticConditionalContext.new(set).instance_eval {binding} + klass.class_eval(<] The static variable assignment + # @return [String] The real name of the static method + def static_method_name(name, *vars) + "#{name}_#{vars.map {|v| !!v}.join('_')}" + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/haml/version.rb b/vendor/gems/haml-2.2.16/lib/haml/version.rb new file mode 100644 index 0000000..de0b001 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/haml/version.rb @@ -0,0 +1,64 @@ +require 'haml/util' + +module Haml + # Handles Haml version-reporting. + # Haml not only reports the standard three version numbers, + # but its Git revision hash as well, + # if it was installed from Git. + module Version + include Haml::Util + + # Returns a hash representing the version of Haml. + # The `:major`, `:minor`, and `:teeny` keys have their respective numbers as Fixnums. + # The `:name` key has the name of the version. + # The `:string` key contains a human-readable string representation of the version. + # The `:number` key is the major, minor, and teeny keys separated by periods. + # If Haml is checked out from Git, the `:rev` key will have the revision hash. + # For example: + # + # { + # :string => "2.1.0.9616393", + # :rev => "9616393b8924ef36639c7e82aa88a51a24d16949", + # :number => "2.1.0", + # :major => 2, :minor => 1, :teeny => 0 + # } + # + # @return [{Symbol => String/Fixnum}] The version hash + def version + return @@version if defined?(@@version) + + numbers = File.read(scope('VERSION')).strip.split('.').map { |n| n.to_i } + name = File.read(scope('VERSION_NAME')).strip + @@version = { + :major => numbers[0], + :minor => numbers[1], + :teeny => numbers[2], + :name => name + } + @@version[:number] = [:major, :minor, :teeny].map { |comp| @@version[comp] }.compact.join('.') + @@version[:string] = @@version[:number].dup + + if File.exists?(scope('REVISION')) + rev = File.read(scope('REVISION')).strip + rev = nil if rev !~ /^([a-f0-9]+|\(.*\))$/ + end + + if (rev.nil? || rev == '(unknown)') && File.exists?(scope('.git/HEAD')) + rev = File.read(scope('.git/HEAD')).strip + if rev =~ /^ref: (.*)$/ + rev = File.read(scope(".git/#{$1}")).strip + end + end + + if rev + @@version[:rev] = rev + unless rev[0] == ?( + @@version[:string] << "." << rev[0...7] + end + @@version[:string] << " (#{name})" + end + + @@version + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass.rb b/vendor/gems/haml-2.2.16/lib/sass.rb new file mode 100644 index 0000000..c824379 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass.rb @@ -0,0 +1,24 @@ +dir = File.dirname(__FILE__) +$LOAD_PATH.unshift dir unless $LOAD_PATH.include?(dir) + +require 'haml/version' + +# The module that contains everything Sass-related: +# +# * {Sass::Engine} is the class used to render Sass within Ruby code. +# * {Sass::Plugin} is interfaces with web frameworks (Rails and Merb in particular). +# * {Sass::SyntaxError} is raised when Sass encounters an error. +# * {Sass::CSS} handles conversion of CSS to Sass. +# +# Also see the {file:SASS_REFERENCE.md full Sass reference}. +module Sass + extend Haml::Version + + # A string representing the version of Sass. + # A more fine-grained representation is available from {Sass.version}. + VERSION = version[:string] unless defined?(Sass::VERSION) +end + +require 'haml/util' +require 'sass/engine' +require 'sass/plugin' if defined?(Merb::Plugins) diff --git a/vendor/gems/haml-2.2.16/lib/sass/css.rb b/vendor/gems/haml-2.2.16/lib/sass/css.rb new file mode 100644 index 0000000..4392984 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/css.rb @@ -0,0 +1,404 @@ +require File.dirname(__FILE__) + '/../sass' +require 'sass/tree/node' +require 'strscan' + +module Sass + module Tree + class Node + # Converts a node to Sass code that will generate it. + # + # @param tabs [Fixnum] The amount of tabulation to use for the Sass code + # @param opts [{Symbol => Object}] An options hash (see {Sass::CSS#initialize}) + # @return [String] The Sass code corresponding to the node + def to_sass(tabs = 0, opts = {}) + result = '' + + children.each do |child| + result << "#{' ' * tabs}#{child.to_sass(0, opts)}\n" + end + + result + end + end + + class RuleNode + # @see Node#to_sass + def to_sass(tabs, opts = {}) + name = rules.first + name = "\\" + name if name[0] == ?: + str = "\n#{' ' * tabs}#{name}#{children.any? { |c| c.is_a? PropNode } ? "\n" : ''}" + + children.each do |child| + str << "#{child.to_sass(tabs + 1, opts)}" + end + + str + end + end + + class PropNode + # @see Node#to_sass + def to_sass(tabs, opts = {}) + "#{' ' * tabs}#{opts[:old] ? ':' : ''}#{name}#{opts[:old] ? '' : ':'} #{value}\n" + end + end + + class DirectiveNode + # @see Node#to_sass + def to_sass(tabs, opts = {}) + "#{' ' * tabs}#{value}#{children.map {|c| c.to_sass(tabs + 1, opts)}}\n" + end + end + end + + # This class converts CSS documents into Sass templates. + # It works by parsing the CSS document into a {Sass::Tree} structure, + # and then applying various transformations to the structure + # to produce more concise and idiomatic Sass. + # + # Example usage: + # + # Sass::CSS.new("p { color: blue }").render #=> "p\n color: blue" + class CSS + # @param template [String] The CSS code + # @option options :old [Boolean] (false) + # Whether or not to output old property syntax + # (`:color blue` as opposed to `color: blue`). + def initialize(template, options = {}) + if template.is_a? IO + template = template.read + end + + @options = options.dup + # Backwards compatibility + @options[:old] = true if @options[:alternate] == false + @template = StringScanner.new(template) + end + + # Converts the CSS template into Sass code. + # + # @return [String] The resulting Sass code + def render + begin + build_tree.to_sass(0, @options).strip + "\n" + rescue Exception => err + line = @template.string[0...@template.pos].split("\n").size + + err.backtrace.unshift "(css):#{line}" + raise err + end + end + + private + + # Parses the CSS template and applies various transformations + # + # @return [Tree::Node] The root node of the parsed tree + def build_tree + root = Tree::Node.new + whitespace + rules root + expand_commas root + parent_ref_rules root + remove_parent_refs root + flatten_rules root + fold_commas root + root + end + + # Parses a set of CSS rules. + # + # @param root [Tree::Node] The parent node of the rules + def rules(root) + while r = rule + root << r + whitespace + end + end + + # Parses a single CSS rule. + # + # @return [Tree::Node] The parsed rule + def rule + rule = "" + loop do + token = @template.scan(/(?:[^\{\};\/\s]|\/[^*])+/) + if token.nil? + return if rule.empty? + break + end + rule << token + break unless @template.match?(/\s|\/\*/) + whitespace + rule << " " + end + + rule.strip! + directive = rule[0] == ?@ + + if directive + node = Tree::DirectiveNode.new(rule) + return node if @template.scan(/;/) + + assert_match /\{/ + whitespace + + rules(node) + return node + end + + assert_match /\{/ + node = Tree::RuleNode.new(rule) + properties(node) + return node + end + + # Parses a set of CSS properties within a rule. + # + # @param rule [Tree::RuleNode] The parent node of the properties + def properties(rule) + while @template.scan(/[^:\}\s]+/) + name = @template[0] + whitespace + + assert_match /:/ + + value = '' + while @template.scan(/[^;\s\}]+/) + value << @template[0] << whitespace + end + + assert_match /(;|(?=\}))/ + rule << Tree::PropNode.new(name, value, nil) + end + + assert_match /\}/ + end + + # Moves the scanner over a section of whitespace or comments. + # + # @return [String] The ignored whitespace + def whitespace + space = @template.scan(/\s*/) || '' + + # If we've hit a comment, + # go past it and look for more whitespace + if @template.scan(/\/\*/) + @template.scan_until(/\*\//) + return space + whitespace + end + return space + end + + # Moves the scanner over a regular expression, + # raising an exception if it doesn't match. + # + # @param re [Regexp] The regular expression to assert + def assert_match(re) + if @template.scan(re) + whitespace + return + end + + line = @template.string[0..@template.pos].count "\n" + pos = @template.pos + + after = @template.string[pos - 15...pos] + after = "..." + after if pos >= 15 + + # Display basic regexps as plain old strings + expected = re.source == Regexp.escape(re.source) ? "\"#{re.source}\"" : re.inspect + + was = @template.rest[0...15] + was += "..." if @template.rest.size >= 15 + raise Exception.new(<` + # : The arguments for the mixin. + # Each element is a tuple containing the name of the argument + # and the parse tree for the default value of the argument. + # + # `environment`: {Sass::Environment} + # : The environment in which the mixin was defined. + # This is captured so that the mixin can have access + # to local variables defined in its scope. + # + # `tree`: {Sass::Tree::Node} + # : The parse tree for the mixin. + Mixin = Struct.new(:name, :args, :environment, :tree) + + # This class handles the parsing and compilation of the Sass template. + # Example usage: + # + # template = File.load('stylesheets/sassy.sass') + # sass_engine = Sass::Engine.new(template) + # output = sass_engine.render + # puts output + class Engine + include Haml::Util + + # A line of Sass code. + # + # `text`: `String` + # : The text in the line, without any whitespace at the beginning or end. + # + # `tabs`: `Fixnum` + # : The level of indentation of the line. + # + # `index`: `Fixnum` + # : The line number in the original document. + # + # `offset`: `Fixnum` + # : The number of bytes in on the line that the text begins. + # This ends up being the number of bytes of leading whitespace. + # + # `filename`: `String` + # : The name of the file in which this line appeared. + # + # `children`: `Array` + # : The lines nested below this one. + class Line < Struct.new(:text, :tabs, :index, :offset, :filename, :children) + def comment? + text[0] == COMMENT_CHAR && (text[1] == SASS_COMMENT_CHAR || text[1] == CSS_COMMENT_CHAR) + end + end + + # The character that begins a CSS property. + PROPERTY_CHAR = ?: + + # The character that designates that + # a property should be assigned to a SassScript expression. + SCRIPT_CHAR = ?= + + # The character that designates the beginning of a comment, + # either Sass or CSS. + COMMENT_CHAR = ?/ + + # The character that follows the general COMMENT_CHAR and designates a Sass comment, + # which is not output as a CSS comment. + SASS_COMMENT_CHAR = ?/ + + # The character that follows the general COMMENT_CHAR and designates a CSS comment, + # which is embedded in the CSS document. + CSS_COMMENT_CHAR = ?* + + # The character used to denote a compiler directive. + DIRECTIVE_CHAR = ?@ + + # Designates a non-parsed rule. + ESCAPE_CHAR = ?\\ + + # Designates block as mixin definition rather than CSS rules to output + MIXIN_DEFINITION_CHAR = ?= + + # Includes named mixin declared using MIXIN_DEFINITION_CHAR + MIXIN_INCLUDE_CHAR = ?+ + + # The regex that matches properties of the form `name: prop`. + PROPERTY_NEW_MATCHER = /^[^\s:"\[]+\s*[=:](\s|$)/ + + # The regex that matches and extracts data from + # properties of the form `name: prop`. + PROPERTY_NEW = /^([^\s=:"]+)(\s*=|:)(?:\s+|$)(.*)/ + + # The regex that matches and extracts data from + # properties of the form `:name prop`. + PROPERTY_OLD = /^:([^\s=:"]+)\s*(=?)(?:\s+|$)(.*)/ + + # The default options for Sass::Engine. + DEFAULT_OPTIONS = { + :style => :nested, + :load_paths => ['.'], + :cache => true, + :cache_location => './.sass-cache', + }.freeze + + # @param template [String] The Sass template. + # @param options [{Symbol => Object}] An options hash; + # see {file:SASS_REFERENCE.md#sass_options the Sass options documentation} + def initialize(template, options={}) + @options = DEFAULT_OPTIONS.merge(options) + @template = template + + # Backwards compatibility + @options[:property_syntax] ||= @options[:attribute_syntax] + case @options[:property_syntax] + when :alternate; @options[:property_syntax] = :new + when :normal; @options[:property_syntax] = :old + end + end + + # Render the template to CSS. + # + # @return [String] The CSS + # @raise [Sass::SyntaxError] if there's an error in the document + def render + to_tree.render + end + + alias_method :to_css, :render + + # Parses the document into its parse tree. + # + # @return [Sass::Tree::Node] The root of the parse tree. + # @raise [Sass::SyntaxError] if there's an error in the document + def to_tree + root = Tree::Node.new + append_children(root, tree(tabulate(@template)).first, true) + root.options = @options + root + rescue SyntaxError => e; e.add_metadata(@options[:filename], @line) + end + + private + + def tabulate(string) + tab_str = nil + first = true + lines = [] + string.gsub(/\r|\n|\r\n|\r\n/, "\n").scan(/^.*?$/).each_with_index do |line, index| + index += (@options[:line] || 1) + if line.strip.empty? + lines.last.text << "\n" if lines.last && lines.last.comment? + next + end + + line_tab_str = line[/^\s*/] + unless line_tab_str.empty? + tab_str ||= line_tab_str + + raise SyntaxError.new("Indenting at the beginning of the document is illegal.", index) if first + if tab_str.include?(?\s) && tab_str.include?(?\t) + raise SyntaxError.new("Indentation can't use both tabs and spaces.", index) + end + end + first &&= !tab_str.nil? + if tab_str.nil? + lines << Line.new(line.strip, 0, index, 0, @options[:filename], []) + next + end + + if lines.last && lines.last.comment? && line =~ /^(?:#{tab_str}){#{lines.last.tabs + 1}}(.*)$/ + lines.last.text << "\n" << $1 + next + end + + line_tabs = line_tab_str.scan(tab_str).size + raise SyntaxError.new(<= base + if line.tabs > base + if line.tabs > base + 1 + raise SyntaxError.new("The line was indented #{line.tabs - base} levels deeper than the previous line.", line.index) + end + + nodes.last.children, i = tree(arr, i) + else + nodes << line + i += 1 + end + end + return nodes, i + end + + def build_tree(parent, line, root = false) + @line = line.index + node_or_nodes = parse_line(parent, line, root) + + Array(node_or_nodes).each do |node| + # Node is a symbol if it's non-outputting, like a variable assignment + next unless node.is_a? Tree::Node + + node.line = line.index + node.filename = line.filename + + if node.is_a?(Tree::CommentNode) + node.lines = line.children + else + append_children(node, line.children, false) + end + end + + node_or_nodes + end + + def append_children(parent, children, root) + continued_rule = nil + children.each do |line| + child = build_tree(parent, line, root) + + if child.is_a?(Tree::RuleNode) && child.continued? + raise SyntaxError.new("Rules can't end in commas.", child.line) unless child.children.empty? + if continued_rule + continued_rule.add_rules child + else + continued_rule = child + end + next + end + + if continued_rule + raise SyntaxError.new("Rules can't end in commas.", continued_rule.line) unless child.is_a?(Tree::RuleNode) + continued_rule.add_rules child + continued_rule.children = child.children + continued_rule, child = nil, continued_rule + end + + check_for_no_children(child) + validate_and_append_child(parent, child, line, root) + end + + raise SyntaxError.new("Rules can't end in commas.", continued_rule.line) if continued_rule + + parent + end + + def validate_and_append_child(parent, child, line, root) + unless root + case child + when Tree::MixinDefNode + raise SyntaxError.new("Mixins may only be defined at the root of a document.", line.index) + when Tree::ImportNode + raise SyntaxError.new("Import directives may only be used at the root of a document.", line.index) + end + end + + case child + when Array + child.each {|c| validate_and_append_child(parent, c, line, root)} + when Tree::Node + parent << child + end + end + + def check_for_no_children(node) + return unless node.is_a?(Tree::RuleNode) && node.children.empty? + warning = (node.rules.size == 1) ? < line.offset + line.text.index(value)) + else + value + end + Tree::PropNode.new(name, expr, property_regx == PROPERTY_OLD ? :old : :new) + end + + def parse_variable(line) + name, op, value = line.text.scan(Script::MATCH)[0] + raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath variable declarations.", @line + 1) unless line.children.empty? + raise SyntaxError.new("Invalid variable: \"#{line.text}\".", @line) unless name && value + + Tree::VariableNode.new(name, parse_script(value, :offset => line.offset + line.text.index(value)), op == '||=') + end + + def parse_comment(line) + if line[1] == CSS_COMMENT_CHAR || line[1] == SASS_COMMENT_CHAR + Tree::CommentNode.new(line, line[1] == SASS_COMMENT_CHAR) + else + Tree::RuleNode.new(line) + end + end + + def parse_directive(parent, line, root) + directive, whitespace, value = line.text[1..-1].split(/(\s+)/, 2) + offset = directive.size + whitespace.size + 1 if whitespace + + # If value begins with url( or ", + # it's a CSS @import rule and we don't want to touch it. + if directive == "import" && value !~ /^(url\(|")/ + raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath import directives.", @line + 1) unless line.children.empty? + value.split(/,\s*/).map {|f| Tree::ImportNode.new(f)} + elsif directive == "for" + parse_for(line, root, value) + elsif directive == "else" + parse_else(parent, line, value) + elsif directive == "while" + raise SyntaxError.new("Invalid while directive '@while': expected expression.") unless value + Tree::WhileNode.new(parse_script(value, :offset => offset)) + elsif directive == "if" + raise SyntaxError.new("Invalid if directive '@if': expected expression.") unless value + Tree::IfNode.new(parse_script(value, :offset => offset)) + elsif directive == "debug" + raise SyntaxError.new("Invalid debug directive '@debug': expected expression.") unless value + raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath debug directives.", @line + 1) unless line.children.empty? + offset = line.offset + line.text.index(value).to_i + Tree::DebugNode.new(parse_script(value, :offset => offset)) + else + Tree::DirectiveNode.new(line.text) + end + end + + def parse_for(line, root, text) + var, from_expr, to_name, to_expr = text.scan(/^([^\s]+)\s+from\s+(.+)\s+(to|through)\s+(.+)$/).first + + if var.nil? # scan failed, try to figure out why for error message + if text !~ /^[^\s]+/ + expected = "variable name" + elsif text !~ /^[^\s]+\s+from\s+.+/ + expected = "'from '" + else + expected = "'to ' or 'through '" + end + raise SyntaxError.new("Invalid for directive '@for #{text}': expected #{expected}.", @line) + end + raise SyntaxError.new("Invalid variable \"#{var}\".", @line) unless var =~ Script::VALIDATE + + parsed_from = parse_script(from_expr, :offset => line.offset + line.text.index(from_expr)) + parsed_to = parse_script(to_expr, :offset => line.offset + line.text.index(to_expr)) + Tree::ForNode.new(var[1..-1], parsed_from, parsed_to, to_name == 'to') + end + + def parse_else(parent, line, text) + previous = parent.last + raise SyntaxError.new("@else must come after @if.") unless previous.is_a?(Tree::IfNode) + + if text + if text !~ /^if\s+(.+)/ + raise SyntaxError.new("Invalid else directive '@else #{text}': expected 'if '.", @line) + end + expr = parse_script($1, :offset => line.offset + line.text.index($1)) + end + + node = Tree::IfNode.new(expr) + append_children(node, line.children, false) + previous.add_else node + nil + end + + def parse_mixin_definition(line) + name, arg_string = line.text.scan(/^=\s*([^(]+)(.*)$/).first + raise SyntaxError.new("Invalid mixin \"#{line.text[1..-1]}\".", @line) if name.nil? + + offset = line.offset + line.text.size - arg_string.size + args = Script::Parser.new(arg_string.strip, @line, offset).parse_mixin_definition_arglist + default_arg_found = false + Tree::MixinDefNode.new(name, args) + end + + def parse_mixin_include(line, root) + name, arg_string = line.text.scan(/^\+\s*([^(]+)(.*)$/).first + raise SyntaxError.new("Invalid mixin include \"#{line.text}\".", @line) if name.nil? + + offset = line.offset + line.text.size - arg_string.size + args = Script::Parser.new(arg_string.strip, @line, offset).parse_mixin_include_arglist + raise SyntaxError.new("Illegal nesting: Nothing may be nested beneath mixin directives.", @line + 1) unless line.children.empty? + Tree::MixinNode.new(name, args) + end + + def parse_script(script, options = {}) + line = options[:line] || @line + offset = options[:offset] || 0 + Script.parse(script, line, offset, @options[:filename]) + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/environment.rb b/vendor/gems/haml-2.2.16/lib/sass/environment.rb new file mode 100644 index 0000000..5440c21 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/environment.rb @@ -0,0 +1,79 @@ +module Sass + # The lexical environment for SassScript. + # This keeps track of variable and mixin definitions. + # + # A new environment is created for each level of Sass nesting. + # This allows variables to be lexically scoped. + # The new environment refers to the environment in the upper scope, + # so it has access to variables defined in enclosing scopes, + # but new variables are defined locally. + # + # Environment also keeps track of the {Engine} options + # so that they can be made available to {Sass::Script::Functions}. + class Environment + # The enclosing environment, + # or nil if this is the global environment. + # + # @return [Environment] + attr_reader :parent + attr_writer :options + + # @param parent [Environment] See \{#parent} + def initialize(parent = nil) + @vars = {} + @mixins = {} + @parent = parent + + set_var("important", Script::String.new("!important")) unless @parent + end + + # The options hash. + # See {file:SASS_REFERENCE.md#sass_options the Sass options documentation}. + # + # @return [{Symbol => Object}] + def options + @options || (parent && parent.options) || {} + end + + class << self + private + + # Note: when updating this, + # update haml/yard/inherited_hash.rb as well. + def inherited_hash(name) + class_eval < Object}] The options hash. + # Only the {file:SASS_REFERENCE.md#cache-option `:cache_location`} option is used + # @raise [Sass::SyntaxError] if there's an error in the document + def tree_for(filename, options) + options = Sass::Engine::DEFAULT_OPTIONS.merge(options) + text = File.read(filename) + + if options[:cache] + compiled_filename = sassc_filename(filename, options) + sha = Digest::SHA1.hexdigest(text) + + if root = try_to_read_sassc(filename, compiled_filename, sha) + root.options = options.merge(:filename => filename) + return root + end + end + + engine = Sass::Engine.new(text, options.merge(:filename => filename)) + + begin + root = engine.to_tree + rescue Sass::SyntaxError => err + err.add_backtrace_entry(filename) + raise err + end + + try_to_write_sassc(root, compiled_filename, sha, options) if options[:cache] + + root + end + + # Find the full filename of a Sass or CSS file to import. + # This follows Sass's import rules: + # if the filename given ends in `".sass"` or `".css"`, + # it will try to find that type of file; + # otherwise, it will try to find the corresponding Sass file + # and fall back on CSS if it's not available. + # + # Any Sass filename returned will correspond to + # an actual Sass file on the filesystem. + # CSS filenames, however, may not; + # they're expected to be put through directly to the stylesheet + # as CSS `@import` statements. + # + # @param filename [String] The filename to search for + # @param load_paths [Array] The set of filesystem paths + # to search for Sass files. + # @return [String] The filename of the imported file. + # This is an absolute path if the file is a `".sass"` file. + # @raise [Sass::SyntaxError] if `filename` ends in ``".sass"`` + # and no corresponding Sass file could be found. + def find_file_to_import(filename, load_paths) + was_sass = false + original_filename = filename + + if filename[-5..-1] == ".sass" + filename = filename[0...-5] + was_sass = true + elsif filename[-4..-1] == ".css" + return filename + end + + new_filename = find_full_path("#{filename}.sass", load_paths) + + return new_filename if new_filename + return filename + '.css' unless was_sass + raise SyntaxError.new("File to import not found or unreadable: #{original_filename}.", @line) + end + + private + + def sassc_filename(filename, options) + File.join(options[:cache_location], + Digest::SHA1.hexdigest(File.dirname(File.expand_path(filename))), + File.basename(filename) + 'c') + end + + def try_to_read_sassc(filename, compiled_filename, sha) + return unless File.readable?(compiled_filename) + + File.open(compiled_filename, "rb") do |f| + return unless f.readline("\n").strip == Sass::VERSION + return unless f.readline("\n").strip == sha + return Marshal.load(f.read) + end + rescue TypeError, ArgumentError => e + warn "Warning. Error encountered while reading cache #{compiled_filename}: #{e}" + end + + def try_to_write_sassc(root, compiled_filename, sha, options) + return unless File.writable?(File.dirname(options[:cache_location])) + return if File.exists?(options[:cache_location]) && !File.writable?(options[:cache_location]) + return if File.exists?(File.dirname(compiled_filename)) && !File.writable?(File.dirname(compiled_filename)) + return if File.exists?(compiled_filename) && !File.writable?(compiled_filename) + FileUtils.mkdir_p(File.dirname(compiled_filename)) + File.open(compiled_filename, "wb") do |f| + f.write(Sass::VERSION) + f.write("\n") + f.write(sha) + f.write("\n") + f.write(Marshal.dump(root)) + end + end + + def find_full_path(filename, load_paths) + partial_name = File.join(File.dirname(filename), "_#{File.basename(filename)}") + + if Pathname.new(filename).absolute? + [partial_name, filename].each do |name| + return name if File.readable?(name) + end + return nil + end + + load_paths.each do |path| + [partial_name, filename].each do |name| + full_path = File.join(path, name) + if File.readable?(full_path) + return full_path + end + end + end + nil + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/plugin.rb b/vendor/gems/haml-2.2.16/lib/sass/plugin.rb new file mode 100644 index 0000000..f78bf67 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/plugin.rb @@ -0,0 +1,225 @@ +require 'sass' + +module Sass + # This module handles the compilation of Sass files. + # It provides global options and checks whether CSS files + # need to be updated. + # + # This module is used as the primary interface with Sass + # when it's used as a plugin for various frameworks. + # All Rack-enabled frameworks are supported out of the box. + # The plugin is {file:SASS_REFERENCE.md#rails_merb_plugin automatically activated for Rails and Merb}. + # Other frameworks must enable it explicitly; see {Sass::Plugin::Rack}. + module Plugin + extend self + + @options = { + :css_location => './public/stylesheets', + :always_update => false, + :always_check => true, + :full_exception => true + } + @checked_for_updates = false + + # Whether or not Sass has **ever** checked if the stylesheets need to be updated + # (in this Ruby instance). + # + # @return [Boolean] + attr_reader :checked_for_updates + + # An options hash. + # See {file:SASS_REFERENCE.md#sass_options the Sass options documentation}. + # + # @return [{Symbol => Object}] + attr_reader :options + + # Sets the options hash. + # See {file:SASS_REFERENCE.md#sass_options the Sass options documentation}. + # + # @param value [{Symbol => Object}] The options hash + def options=(value) + @options.merge!(value) + end + + # Non-destructively modifies \{#options} so that default values are properly set. + # + # @param additional_options [{Symbol => Object}] An options hash with which to merge \{#options} + # @return [{Symbol => Object}] The modified options hash + def engine_options(additional_options = {}) + opts = options.dup.merge(additional_options) + opts[:load_paths] = load_paths(opts) + opts + end + + # Same as \{#update\_stylesheets}, but respects \{#checked\_for\_updates} + # and the {file:SASS_REFERENCE.md#always_update-option `:always_update`} + # and {file:SASS_REFERENCE.md#always_check-option `:always_check`} options. + # + # @see #update_stylesheets + def check_for_updates + return unless !Sass::Plugin.checked_for_updates || + Sass::Plugin.options[:always_update] || Sass::Plugin.options[:always_check] + update_stylesheets + end + + # Updates out-of-date stylesheets. + # + # Checks each Sass file in {file:SASS_REFERENCE.md#template_location-option `:template_location`} + # to see if it's been modified more recently than the corresponding CSS file + # in {file:SASS_REFERENCE.md#css_location-option} `:css_location`}. + # If it has, it updates the CSS file. + def update_stylesheets + return if options[:never_update] + + @checked_for_updates = true + template_locations.zip(css_locations).each do |template_location, css_location| + + Dir.glob(File.join(template_location, "**", "*.sass")).each do |file| + # Get the relative path to the file with no extension + name = file.sub(template_location + "/", "")[0...-5] + + if !forbid_update?(name) && (options[:always_update] || stylesheet_needs_update?(name, template_location, css_location)) + update_stylesheet(name, template_location, css_location) + end + end + end + end + + private + + def update_stylesheet(name, template_location, css_location) + css = css_filename(name, css_location) + File.delete(css) if File.exists?(css) + + filename = template_filename(name, template_location) + result = begin + Sass::Files.tree_for(filename, engine_options(:css_filename => css, :filename => filename)).render + rescue Exception => e + exception_string(e) + end + + # Create any directories that might be necessary + mkpath(css_location, name) + + # Finally, write the file + File.open(css, 'w') do |file| + file.print(result) + end + end + + # Create any successive directories required to be able to write a file to: File.join(base,name) + def mkpath(base, name) + dirs = [base] + name.split(File::SEPARATOR)[0...-1].each { |dir| dirs << File.join(dirs[-1],dir) } + dirs.each { |dir| Dir.mkdir(dir) unless File.exist?(dir) } + end + + def load_paths(opts = options) + (opts[:load_paths] || []) + template_locations + end + + def template_locations + location = (options[:template_location] || File.join(options[:css_location],'sass')) + if location.is_a?(String) + [location] + else + location.to_a.map { |l| l.first } + end + end + + def css_locations + if options[:template_location] && !options[:template_location].is_a?(String) + options[:template_location].to_a.map { |l| l.last } + else + [options[:css_location]] + end + end + + def exception_string(e) + if options[:full_exception] + e_string = "#{e.class}: #{e.message}" + + if e.is_a? Sass::SyntaxError + e_string << "\non line #{e.sass_line}" + + if e.sass_filename + e_string << " of #{e.sass_filename}" + + if File.exists?(e.sass_filename) + e_string << "\n\n" + + min = [e.sass_line - 5, 0].max + begin + File.read(e.sass_filename).rstrip.split("\n")[ + min .. e.sass_line + 5 + ].each_with_index do |line, i| + e_string << "#{min + i + 1}: #{line}\n" + end + rescue + e_string << "Couldn't read sass file: #{e.sass_filename}" + end + end + end + end + < css_mtime || + dependencies(template_file).any?(&dependency_updated?(css_mtime)) + end + + def dependency_updated?(css_mtime) + lambda do |dep| + File.mtime(dep) > css_mtime || + dependencies(dep).any?(&dependency_updated?(css_mtime)) + end + end + + def dependencies(filename) + File.readlines(filename).grep(/^@import /).map do |line| + line[8..-1].split(',').map do |inc| + Sass::Files.find_file_to_import(inc.strip, [File.dirname(filename)] + load_paths) + end + end.flatten.grep(/\.sass$/) + end + end +end + +require 'sass/plugin/rails' if defined?(ActionController) +require 'sass/plugin/merb' if defined?(Merb::Plugins) diff --git a/vendor/gems/haml-2.2.16/lib/sass/plugin/merb.rb b/vendor/gems/haml-2.2.16/lib/sass/plugin/merb.rb new file mode 100644 index 0000000..fb931f3 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/plugin/merb.rb @@ -0,0 +1,49 @@ +unless defined?(Sass::MERB_LOADED) + Sass::MERB_LOADED = true + + version = Merb::VERSION.split('.').map { |n| n.to_i } + if version[0] <= 0 && version[1] < 5 + root = MERB_ROOT + env = MERB_ENV + else + root = Merb.root.to_s + env = Merb.environment + end + + Sass::Plugin.options.merge!(:template_location => root + '/public/stylesheets/sass', + :css_location => root + '/public/stylesheets', + :cache_location => root + '/tmp/sass-cache', + :always_check => env != "production", + :full_exception => env != "production") + config = Merb::Plugins.config[:sass] || Merb::Plugins.config["sass"] || {} + + if defined? config.symbolize_keys! + config.symbolize_keys! + end + + Sass::Plugin.options.merge!(config) + + if version[0] > 0 || version[1] >= 9 + + class Merb::Rack::Application + def call_with_sass(env) + Sass::Plugin.check_for_updates + call_without_sass(env) + end + alias_method :call_without_sass, :call + alias_method :call, :call_with_sass + end + + else + + class MerbHandler + def process_with_sass(request, response) + Sass::Plugin.check_for_updates + process_without_sass(request, response) + end + alias_method :process_without_sass, :process + alias_method :process, :process_with_sass + end + + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/plugin/rack.rb b/vendor/gems/haml-2.2.16/lib/sass/plugin/rack.rb new file mode 100644 index 0000000..9275b4b --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/plugin/rack.rb @@ -0,0 +1,65 @@ +require 'sass/plugin' + +module Sass + module Plugin + # Rack middleware for compiling Sass code. + # + # ## Activate + # + # require 'sass/plugin/rack' + # use Sass::Plugin::Rack + # + # ## Customize + # + # Sass::Plugin.options.merge( + # :cache_location => './tmp/sass-cache', + # :never_update => environment != :production, + # :full_exception => environment != :production) + # + # {file:SASS_REFERENCE.md#options See the Reference for more options}. + # + # ## Use + # + # Put your Sass files in `public/stylesheets/sass`. + # Your CSS will be generated in `public/stylesheets`, + # and regenerated every request if necessary. + # The locations and frequency {file:SASS_REFERENCE.md#options can be customized}. + # That's all there is to it! + class Rack + # Initialize the middleware. + # + # @param app [#call] The Rack application + def initialize(app) + @app = app + self.class.disable_native_plugin! + end + + # Process a request, checking the Sass stylesheets for changes + # and updating them if necessary. + # + # @param env The Rack request environment + # @return [(#to_i, {String => String}, Object)] The Rack response + def call(env) + Sass::Plugin.check_for_updates + @app.call(env) + end + + # Disable the native Rails or Merb plugins, if they're enabled. + # This is automatically done once the Rack plugin is activated. + # This is done so that the stylesheets aren't checked twice for each request. + def self.disable_native_plugin! + if defined?(Merb::Rack::Application) && + Haml::Util.has?(:instance_method, Merb::Rack::Application, :call_without_sass) + Merb::Rack::Application.instance_eval {alias_method :call, :call_without_sass} + end + + if defined?(ActionDispatch::Callbacks.to_prepare) + ActionDispatch::Callbacks.skip_callback(:prepare, :__sass_process) + elsif defined?(ActionController::Base) && + Haml::Util.has?(:instance_method, ActionController::Base, :sass_old_process) + ActionController::Base.instance_eval {alias_method :process, :sass_old_process} + end + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb b/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb new file mode 100644 index 0000000..8d4a5f4 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/plugin/rails.rb @@ -0,0 +1,24 @@ +unless defined?(Sass::RAILS_LOADED) + Sass::RAILS_LOADED = true + + Sass::Plugin.options.merge!(:template_location => Haml::Util.rails_root + '/public/stylesheets/sass', + :css_location => Haml::Util.rails_root + '/public/stylesheets', + :cache_location => Haml::Util.rails_root + '/tmp/sass-cache', + :always_check => RAILS_ENV != "production", + :full_exception => RAILS_ENV != "production") + + if defined?(ActionDispatch::Callbacks.to_prepare) + # Rails >= 3.0.0 + ActionDispatch::Callbacks.to_prepare(:sass_process) {Sass::Plugin.check_for_updates} + else + module ActionController + class Base + alias_method :sass_old_process, :process + def process(*args) + Sass::Plugin.check_for_updates + sass_old_process(*args) + end + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/repl.rb b/vendor/gems/haml-2.2.16/lib/sass/repl.rb new file mode 100644 index 0000000..ee955bf --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/repl.rb @@ -0,0 +1,58 @@ +require 'readline' + +module Sass + # Runs a SassScript read-eval-print loop. + # It presents a prompt on the terminal, + # reads in SassScript expressions, + # evaluates them, + # and prints the result. + class Repl + # @param options [{Symbol => Object}] An options hash. + def initialize(options = {}) + @options = options + end + + # Starts the read-eval-print loop. + def run + environment = Environment.new + environment.set_var('important', Script::String.new('!important')) + @line = 0 + loop do + @line += 1 + unless text = Readline.readline('>> ') + puts + return + end + + Readline::HISTORY << text + parse_input(environment, text) + end + end + + private + + def parse_input(environment, text) + case text + when Script::MATCH + name = $1 + guarded = $2 == '||=' + val = Script::Parser.parse($3, @line, text.size - $3.size) + + unless guarded && environment.var(name) + environment.set_var(name, val.perform(environment)) + end + + p environment.var(name) + else + p Script::Parser.parse(text, @line, 0).perform(environment) + end + rescue Sass::SyntaxError => e + puts "SyntaxError: #{e.message}" + if @options[:trace] + e.backtrace.each do |e| + puts "\tfrom #{e}" + end + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/script.rb b/vendor/gems/haml-2.2.16/lib/sass/script.rb new file mode 100644 index 0000000..bcacabd --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/script.rb @@ -0,0 +1,59 @@ +require 'strscan' +require 'sass/script/node' +require 'sass/script/variable' +require 'sass/script/funcall' +require 'sass/script/operation' +require 'sass/script/literal' +require 'sass/script/parser' + +module Sass + # SassScript is code that's embedded in Sass documents + # to allow for property values to be computed from variables. + # + # This module contains code that handles the parsing and evaluation of SassScript. + module Script + # The character that begins a variable. + VARIABLE_CHAR = ?! + + # The regular expression used to parse variables. + MATCH = /^!([a-zA-Z_]\w*)\s*((?:\|\|)?=)\s*(.+)/ + + # The regular expression used to validate variables without matching. + VALIDATE = /^![a-zA-Z_]\w*$/ + + # Parses and evaluates a string of SassScript. + # + # @param value [String] The SassScript + # @param line [Fixnum] The number of the line on which the SassScript appeared. + # Used for error reporting + # @param offset [Fixnum] The number of characters in on `line` that the SassScript started. + # Used for error reporting + # @param environment [Sass::Environment] The environment in which to evaluate the SassScript + # @return [String] The string result of evaluating the SassScript + def self.resolve(value, line, offset, environment) + parse(value, line, offset).perform(environment).to_s + end + + # Parses a string of SassScript + # + # @param value [String] The SassScript + # @param line [Fixnum] The number of the line on which the SassScript appeared. + # Used for error reporting + # @param offset [Fixnum] The number of characters in on `line` that the SassScript started. + # Used for error reporting + # @param filename [String] The path to the file in which the SassScript appeared. + # Used for error reporting + # @return [Script::Node] The root node of the parse tree + def self.parse(value, line, offset, filename = nil) + Parser.parse(value, line, offset, filename) + rescue Sass::SyntaxError => e + if e.message == "SassScript error" + e.instance_eval do + @message += ": #{value.dump}." + end + end + e.sass_line = line + raise e + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/script/bool.rb b/vendor/gems/haml-2.2.16/lib/sass/script/bool.rb new file mode 100644 index 0000000..0f455db --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/script/bool.rb @@ -0,0 +1,17 @@ +require 'sass/script/literal' + +module Sass::Script + # A SassScript object representing a boolean (true or false) value. + class Bool < Literal + # The Ruby value of the boolean. + # + # @return [Boolean] + attr_reader :value + alias_method :to_bool, :value + + # @return [String] "true" or "false" + def to_s + @value.to_s + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/script/color.rb b/vendor/gems/haml-2.2.16/lib/sass/script/color.rb new file mode 100644 index 0000000..6e1cce1 --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/script/color.rb @@ -0,0 +1,220 @@ +require 'sass/script/literal' + +module Sass::Script + # A SassScript object representing a CSS color. + class Color < Literal + class << self; include Haml::Util; end + + # A hash from color names to `[red, green, blue]` value arrays. + HTML4_COLORS = map_vals({ + 'black' => 0x000000, + 'silver' => 0xc0c0c0, + 'gray' => 0x808080, + 'white' => 0xffffff, + 'maroon' => 0x800000, + 'red' => 0xff0000, + 'purple' => 0x800080, + 'fuchsia' => 0xff00ff, + 'green' => 0x008000, + 'lime' => 0x00ff00, + 'olive' => 0x808000, + 'yellow' => 0xffff00, + 'navy' => 0x000080, + 'blue' => 0x0000ff, + 'teal' => 0x008080, + 'aqua' => 0x00ffff + }) {|color| (0..2).map {|n| color >> (n << 3) & 0xff}.reverse} + # A hash from `[red, green, blue]` value arrays to color names. + HTML4_COLORS_REVERSE = map_hash(HTML4_COLORS) {|k, v| [v, k]} + + # Creates a new color from RGB components. + # *Note*: when modifying the components of an existing color, + # use \{#with} rather than creating a new color object. + # This preserves forwards-compatiblity for alpha channels and such. + # + # @param rgb [Array] A three-element array of the red, green, and blue values (respectively) + # of the color + # @raise [Sass::SyntaxError] if any color value isn't between 0 and 255 + def initialize(rgb) + rgb = rgb.map {|c| c.to_i} + raise Sass::SyntaxError.new("Color values must be between 0 and 255") if rgb.any? {|c| c < 0 || c > 255} + super(rgb.freeze) + end + + # @deprecated This will be removed in version 2.6. + # @see #rgb + def value + warn <] A frozen three-element array of the red, green, and blue + # values (respectively) of the color + def rgb + @value + end + + # Returns a copy of this color with one or more channels changed. + # + # For example: + # + # Color.new([10, 20, 30]).with(:blue => 40) + # #=> rgb(10, 40, 30) + # Color.new([126, 126, 126]).with(:red => 0, :green => 255) + # #=> rgb(0, 255, 126) + # + # @param attrs [{Symbol => Fixnum}] + # A map of channel names (`:red`, `:green`, or `:blue`) to values + # @return [Color] The new Color object + def with(attrs) + Color.new([ + attrs[:red] || rgb[0], + attrs[:green] || rgb[1], + attrs[:blue] || rgb[2], + ]) + end + + # The SassScript `+` operation. + # Its functionality depends on the type of its argument: + # + # {Number} + # : Adds the number to each of the RGB color channels. + # + # {Color} + # : Adds each of the RGB color channels together. + # + # {Literal} + # : See {Literal#plus}. + # + # @param other [Literal] The right-hand side of the operator + # @return [Color] The resulting color + # @raise [Sass::SyntaxError] if `other` is a number with units + def plus(other) + if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color) + piecewise(other, :+) + else + super + end + end + + # The SassScript `-` operation. + # Its functionality depends on the type of its argument: + # + # {Number} + # : Subtracts the number from each of the RGB color channels. + # + # {Color} + # : Subtracts each of the other color's RGB color channels from this color's. + # + # {Literal} + # : See {Literal#minus}. + # + # @param other [Literal] The right-hand side of the operator + # @return [Color] The resulting color + # @raise [Sass::SyntaxError] if `other` is a number with units + def minus(other) + if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color) + piecewise(other, :-) + else + super + end + end + + # The SassScript `*` operation. + # Its functionality depends on the type of its argument: + # + # {Number} + # : Multiplies the number by each of the RGB color channels. + # + # {Color} + # : Multiplies each of the RGB color channels together. + # + # @param other [Number, Color] The right-hand side of the operator + # @return [Color] The resulting color + # @raise [Sass::SyntaxError] if `other` is a number with units + def times(other) + if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color) + piecewise(other, :*) + else + raise NoMethodError.new(nil, :times) + end + end + + # The SassScript `/` operation. + # Its functionality depends on the type of its argument: + # + # {Number} + # : Divides each of the RGB color channels by the number. + # + # {Color} + # : Divides each of this color's RGB color channels by the other color's. + # + # {Literal} + # : See {Literal#div}. + # + # @param other [Literal] The right-hand side of the operator + # @return [Color] The resulting color + # @raise [Sass::SyntaxError] if `other` is a number with units + def div(other) + if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color) + piecewise(other, :/) + else + super + end + end + + # The SassScript `%` operation. + # Its functionality depends on the type of its argument: + # + # {Number} + # : Takes each of the RGB color channels module the number. + # + # {Color} + # : Takes each of this color's RGB color channels modulo the other color's. + # + # @param other [Number, Color] The right-hand side of the operator + # @return [Color] The resulting color + # @raise [Sass::SyntaxError] if `other` is a number with units + def mod(other) + if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color) + piecewise(other, :%) + else + raise NoMethodError.new(nil, :mod) + end + end + + # Returns a string representation of the color. + # This is usually the color's hex value, + # but if the color has a name that's used instead. + # + # @return [String] The string representation + def to_s + return HTML4_COLORS_REVERSE[rgb] if HTML4_COLORS_REVERSE[rgb] + red, green, blue = rgb.map { |num| num.to_s(16).rjust(2, '0') } + "##{red}#{green}#{blue}" + end + alias_method :inspect, :to_s + + private + + def piecewise(other, operation) + other_num = other.is_a? Number + if other_num && !other.unitless? + raise Sass::SyntaxError.new("Cannot add a number with units (#{other}) to a color (#{self}).") + end + + result = [] + for i in (0...3) + res = rgb[i].send(operation, other_num ? other.value : other.rgb[i]) + result[i] = [ [res, 255].min, 0 ].max + end + with(:red => result[0], :green => result[1], :blue => result[2]) + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/script/funcall.rb b/vendor/gems/haml-2.2.16/lib/sass/script/funcall.rb new file mode 100644 index 0000000..7e144cf --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/script/funcall.rb @@ -0,0 +1,50 @@ +require File.join(File.dirname(__FILE__), 'functions') +module Sass + module Script + # A SassScript parse node representing a function call. + # + # A function call either calls one of the functions in {Script::Functions}, + # or if no function with the given name exists + # it returns a string representation of the function call. + class Funcall < Node + # The name of the function. + # + # @return [String] + attr_reader :name + + # The arguments to the function. + # + # @return [Array] + attr_reader :args + + # @param name [String] See \{#name} + # @param name [Array] See \{#args} + def initialize(name, args) + @name = name + @args = args + end + + # @return [String] A string representation of the function call + def inspect + "#{name}(#{args.map {|a| a.inspect}.join(', ')})" + end + + # Evaluates the function call. + # + # @param environment [Sass::Environment] The environment in which to evaluate the SassScript + # @return [Literal] The SassScript object that is the value of the function call + # @raise [Sass::SyntaxError] if the function call raises an ArgumentError + def perform(environment) + args = self.args.map {|a| a.perform(environment)} + unless Haml::Util.has?(:public_instance_method, Functions, name) && name !~ /^__/ + return Script::String.new("#{name}(#{args.map {|a| a.perform(environment)}.join(', ')})") + end + + return Functions::EvaluationContext.new(environment.options).send(name, *args) + rescue ArgumentError => e + raise e unless e.backtrace.any? {|t| t =~ /:in `(block in )?(#{name}|perform)'$/} + raise Sass::SyntaxError.new("#{e.message} for `#{name}'") + end + end + end +end diff --git a/vendor/gems/haml-2.2.16/lib/sass/script/functions.rb b/vendor/gems/haml-2.2.16/lib/sass/script/functions.rb new file mode 100644 index 0000000..590405a --- /dev/null +++ b/vendor/gems/haml-2.2.16/lib/sass/script/functions.rb @@ -0,0 +1,252 @@ +module Sass::Script + # Methods in this module are accessible from the SassScript context. + # For example, you can write + # + # !color = hsl(120, 100%, 50%) + # + # and it will call {Sass::Script::Functions#hsl}. + # + # The following functions are provided: + # + # \{#hsl} + # : Converts an `hsl(hue, saturation, lightness)` triplet into a color. + # + # \{#rgb} + # : Converts an `rgb(red, green, blue)` triplet into a color. + # + # \{#percentage} + # : Converts a unitless number to a percentage. + # + # \{#round} + # : Rounds a number to the nearest whole number. + # + # \{#ceil} + # : Rounds a number up to the nearest whole number. + # + # \{#floor} + # : Rounds a number down to the nearest whole number. + # + # \{#abs} + # : Returns the absolute value of a number. + # + # These functions are described in more detail below. + # + # ## Adding Custom Functions + # + # New Sass functions can be added by adding Ruby methods to this module. + # For example: + # + # module Sass::Script::Functions + # def reverse(string) + # assert_type string, :String + # Sass::Script::String.new(string.value.reverse) + # end + # end + # + # There are a few things to keep in mind when modifying this module. + # First of all, the arguments passed are {Sass::Script::Literal} objects. + # Literal objects are also expected to be returned. + # This means that Ruby values must be unwrapped and wrapped. + # + # Most Literal objects support the {Sass::Script::Literal#value value} accessor + # for getting their Ruby values. + # Color objects, though, must be accessed using {Sass::Script::Color#rgb rgb}. + # + # Second, making Ruby functions accessible from Sass introduces the temptation + # to do things like database access within stylesheets. + # This temptation must be resisted. + # Keep in mind that Sass stylesheets are only compiled once + # at a somewhat indeterminate time + # and then left as static CSS files. + # Any dynamic CSS should be left in ` +TESTING HAHAHAHA! +

    + +

    +This + Is + Plain + Text + %strong right? + #{not interpolated} + \3 + \#{also not} + \\ +

    +

    This pre is pretty deeply
          nested.
       Does interpolation work?
    +    This one is, too.
    Nested, that is.
    
    +

    +
      + +
    • a
    • + +
    • b
    • + +
    • c
    • + +
    • d
    • + +
    • e
    • + +
    • f
    • + +
    • g
    • + +
    • h
    • + +
    • i
    • + +
    • j
    • + + + +
    +
    178
    +Text! +Hello, World! +How are you doing today? +<div class="foo"> + <p>I think &mdash; or do I?</p> +</div> diff --git a/vendor/gems/haml-2.2.16/test/haml/results/helpers.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/helpers.xhtml new file mode 100644 index 0000000..ad8ad6d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/helpers.xhtml @@ -0,0 +1,93 @@ +&&&&&&&&&&& +
    +

    Title

    +

    + Woah this is really crazy + I mean wow, + man. +

    +
    +
    +

    Title

    +

    + Woah this is really crazy + I mean wow, + man. +

    +
    +
    +

    Title

    +

    + Woah this is really crazy + I mean wow, + man. +

    +
    +

    foo

    +

    reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeally loooooooooooooooooong

    +
    +
    +
    +

    Big!

    +

    Small

    + +
    +
    +

    foo

    +

    bar

    +
    +
    + (parentheses!) +
    +*Not really +click +here. +

    baz

    +

    boom

    +foo +

    +

    +

    +
    + +
    +

    + @foo = + value one +

    + Toplevel? false +

    + @foo = + value three +

    + +
    + Title: + + Body: + +
    +
    +
  • google
  • +

    + foo +

    + bar +
    + boom + baz + boom, again +

    + + + + + +
    + strong! + data + + more_data +
    +
    +
    diff --git a/vendor/gems/haml-2.2.16/test/haml/results/helpful.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/helpful.xhtml new file mode 100644 index 0000000..042291d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/helpful.xhtml @@ -0,0 +1,10 @@ +
    +

    Hello

    +
    World
    +
    +
    id
    +
    class
    +
    id class
    +
    boo
    +
    moo
    +
    foo
    \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/results/just_stuff.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/just_stuff.xhtml new file mode 100644 index 0000000..cbd641f --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/just_stuff.xhtml @@ -0,0 +1,68 @@ + + + + + + + + +Boo! +Embedded? false! +Embedded? true! +Embedded? true! +Embedded? twice! true! +Embedded? one af"t"er another! +

    Embedded? false!

    +

    Embedded? true!

    +

    Embedded? true!

    +

    Embedded? twice! true!

    +

    Embedded? one af"t"er another!

    +stuff followed by whitespace +block with whitespace +

    + Escape + - character + %p foo + yee\ha +

    + + +

    class attribute should appear!

    +

    this attribute shouldn't appear

    + + + +testtest +
    + + +
    + + +
    + Nested content +
    +

    Blah

    +

    Blah

    +

    Blump

    +Woah inner quotes +

    +

    + + hello +

    + +
    + diff --git a/vendor/gems/haml-2.2.16/test/haml/results/list.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/list.xhtml new file mode 100644 index 0000000..05d2201 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/list.xhtml @@ -0,0 +1,12 @@ +!Not a Doctype! +
      +
    • a
    • +
    • b
    • +
    • c
    • +
    • d
    • +
    • e
    • +
    • f
    • +
    • g
    • +
    • h
    • +
    • i
    • +
    diff --git a/vendor/gems/haml-2.2.16/test/haml/results/nuke_inner_whitespace.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/nuke_inner_whitespace.xhtml new file mode 100644 index 0000000..71d55d8 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/nuke_inner_whitespace.xhtml @@ -0,0 +1,40 @@ +

    + Foo +

    +

    + Foo +

    +

    + Foo + Bar +

    +

    + Foo + Bar +

    +

    + Foo + Bar +

    +

    + Foo + Bar +

    +

    +

    + Foo + Bar +
    +

    +

    +

    + Foo + Bar +
    +

    +

    + foo + + bar + +

    diff --git a/vendor/gems/haml-2.2.16/test/haml/results/nuke_outer_whitespace.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/nuke_outer_whitespace.xhtml new file mode 100644 index 0000000..a31cde3 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/nuke_outer_whitespace.xhtml @@ -0,0 +1,148 @@ +

    +

    + Foo +

    +

    +

    +

    + Foo +

    +

    +

    +

    Foo

    +

    +

    +

    Foo

    +

    +

    +

    + Foo +

    +

    +

    +

    + Foo +

    +

    +

    +

    Foo

    +

    +

    +

    Foo

    +

    +

    +

    + Foo + Bar +

    +

    +

    +

    + Foo + Bar +

    +

    +

    +

    + Foo + Bar +

    +

    +

    +

    + Foo + Bar +

    +

    +

    +

    + foo + Foo + bar +

    +

    +

    +

    + foo + Foo + bar +

    +

    +

    +

    + fooFoobar +

    +

    +

    +

    + fooFoobar +

    +

    +

    +

    + foo + Foo + bar +

    +

    +

    +

    + foo + Foo + bar +

    +

    +

    +

    + fooFoobar +

    +

    +

    +

    + fooFoobar +

    +

    +

    +

    + foo + Foo + Bar + bar +

    +

    +

    +

    + foo + Foo + Bar + bar +

    +

    +

    +

    + foo + Foo + Bar + bar +

    +

    +

    +

    + foo + Foo + Bar + bar +

    +

    +

    +

    +

    +

    +

    +

    +

    +

    +

    +

    +

    +

    diff --git a/vendor/gems/haml-2.2.16/test/haml/results/original_engine.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/original_engine.xhtml new file mode 100644 index 0000000..dd0e9f9 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/original_engine.xhtml @@ -0,0 +1,20 @@ + + + + Stop. haml time +
    +

    This is a title!

    +

    Lorem ipsum dolor sit amet, consectetur adipisicing elit

    +

    Cigarettes!

    +

    Man alive!

    +
      +
    • Slippers
    • +
    • Shoes
    • +
    • Bathrobe
    • +
    • Coffee
    • +
    +
    This is some text that's in a pre block!
    +      Let's see what happens when it's rendered! What about now, since we're on a new line?
    +
    + + diff --git a/vendor/gems/haml-2.2.16/test/haml/results/partial_layout.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/partial_layout.xhtml new file mode 100644 index 0000000..53b96e3 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/partial_layout.xhtml @@ -0,0 +1,5 @@ +

    Partial layout used with for block:

    +
    +

    This is inside a partial layout

    +

    Some content within a layout

    +
    \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/results/partials.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/partials.xhtml new file mode 100644 index 0000000..12366ff --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/partials.xhtml @@ -0,0 +1,21 @@ +

    + @foo = + value one +

    +

    + @foo = + value two +

    +

    + @foo = + value two +

    +Toplevel? false +

    + @foo = + value three +

    +

    + @foo = + value three +

    diff --git a/vendor/gems/haml-2.2.16/test/haml/results/render_layout.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/render_layout.xhtml new file mode 100644 index 0000000..9712bb5 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/render_layout.xhtml @@ -0,0 +1,3 @@ +Before +During +After diff --git a/vendor/gems/haml-2.2.16/test/haml/results/silent_script.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/silent_script.xhtml new file mode 100644 index 0000000..76e90e0 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/silent_script.xhtml @@ -0,0 +1,74 @@ +
    +

    I can count!

    + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 +

    I know my ABCs!

    +
      +
    • a
    • +
    • b
    • +
    • c
    • +
    • d
    • +
    • e
    • +
    • f
    • +
    • g
    • +
    • h
    • +
    • i
    • +
    • j
    • +
    • k
    • +
    • l
    • +
    • m
    • +
    • n
    • +
    • o
    • +
    • p
    • +
    • q
    • +
    • r
    • +
    • s
    • +
    • t
    • +
    • u
    • +
    • v
    • +
    • w
    • +
    • x
    • +
    • y
    • +
    • z
    • +
    +

    I can catch errors!

    + Oh no! "undefined method `silly' for String:Class" happened! +

    + "false" is: + false +

    + Even! + Odd! + Even! + Odd! + Even! +
    +
    + foobar +
    +0 +1 +2 +3 +4 +
    +

    boom

    +
    diff --git a/vendor/gems/haml-2.2.16/test/haml/results/standard.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/standard.xhtml new file mode 100644 index 0000000..849bdc6 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/standard.xhtml @@ -0,0 +1,162 @@ + + + + Hampton Catlin Is Totally Awesome + + + + +
    + Yes, ladies and gentileman. He is just that egotistical. + Fantastic! This should be multi-line output + The question is if this would translate! Ahah! + 20 +
    +
    Quotes should be loved! Just like people!
    + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 + 21 + 22 + 23 + 24 + 25 + 26 + 27 + 28 + 29 + 30 + 31 + 32 + 33 + 34 + 35 + 36 + 37 + 38 + 39 + 40 + 41 + 42 + 43 + 44 + 45 + 46 + 47 + 48 + 49 + 50 + 51 + 52 + 53 + 54 + 55 + 56 + 57 + 58 + 59 + 60 + 61 + 62 + 63 + 64 + 65 + 66 + 67 + 68 + 69 + 70 + 71 + 72 + 73 + 74 + 75 + 76 + 77 + 78 + 79 + 80 + 81 + 82 + 83 + 84 + 85 + 86 + 87 + 88 + 89 + 90 + 91 + 92 + 93 + 94 + 95 + 96 + 97 + 98 + 99 + 100 + 101 + 102 + 103 + 104 + 105 + 106 + 107 + 108 + 109 + 110 + 111 + 112 + 113 + 114 + 115 + 116 + 117 + 118 + 119 + Wow.| +

    + Holy cow multiline tags! A pipe (|) even! + PipesIgnored|PipesIgnored|PipesIgnored| + 1|2|3 +

    +
    + this shouldn't evaluate but now it should! +
    +
      +
    • a
    • +
    • b
    • +
    • c
    • +
    • d
    • +
    • e
    • +
    • f
    • +
    +
    with this text
    + foo + + + diff --git a/vendor/gems/haml-2.2.16/test/haml/results/tag_parsing.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/tag_parsing.xhtml new file mode 100644 index 0000000..e8178aa --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/tag_parsing.xhtml @@ -0,0 +1,23 @@ +
    + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 +
    +
    +

    +
    a
    +
    b
    +
    c
    +
    d
    +
    e
    +
    f
    +
    g
    +
    diff --git a/vendor/gems/haml-2.2.16/test/haml/results/very_basic.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/very_basic.xhtml new file mode 100644 index 0000000..6a4cd25 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/very_basic.xhtml @@ -0,0 +1,5 @@ + + + + + diff --git a/vendor/gems/haml-2.2.16/test/haml/results/whitespace_handling.xhtml b/vendor/gems/haml-2.2.16/test/haml/results/whitespace_handling.xhtml new file mode 100644 index 0000000..11d0487 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/results/whitespace_handling.xhtml @@ -0,0 +1,89 @@ +
    +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    +
    + +
    + +
    +
    +
    + Foo bar +
    foo bar
    +
    foo
    bar
    +

    foo
    bar

    +

    + foo + bar +

    +
    +
    + 13 + + +
    +
    +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    +
    + +
    + +
    +
    +
    + Foo bar +
    foo bar
    +
    foo
    bar
    +

    foo
    bar

    +

    + foo + bar +

    +
                                                     ___
                                                  ,o88888
                                               ,o8888888'
                         ,:o:o:oooo.        ,8O88Pd8888"
                     ,.::.::o:ooooOoOoO. ,oO8O8Pd888'"
                   ,.:.::o:ooOoOoOO8O8OOo.8OOPd8O8O"
                  , ..:.::o:ooOoOOOO8OOOOo.FdO8O8"
                 , ..:.::o:ooOoOO8O888O8O,COCOO"
                , . ..:.::o:ooOoOOOO8OOOOCOCO"
                 . ..:.::o:ooOoOoOO8O8OCCCC"o
                    . ..:.::o:ooooOoCoCCC"o:o
                    . ..:.::o:o:,cooooCo"oo:o:
                 `   . . ..:.:cocoooo"'o:o:::'
                 .`   . ..::ccccoc"'o:o:o:::'
                :.:.    ,c:cccc"':.:.:.:.:.'
              ..:.:"'`::::c:"'..:.:.:.:.:.'  http://www.chris.com/ASCII/
            ...:.'.:.::::"'    . . . . .'
           .. . ....:."' `   .  . . ''
         . . . ...."'
         .. . ."'     -hrr-
        .
    
    
                                                  It's a planet!
    %strong This shouldn't be bold!
    + This should! + +
    +
    + 13 +
    +
           __     ______        __               ______
    .----.|  |--.|__    |.----.|  |--..--------.|  __  |
    |  __||     ||__    ||  __||    < |        ||  __  |
    |____||__|__||______||____||__|__||__|__|__||______|
    +
    foo
    +bar
    diff --git a/vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_1.rhtml b/vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_1.rhtml new file mode 100644 index 0000000..7507a0b --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_1.rhtml @@ -0,0 +1,12 @@ +

    This is a pretty complicated partial

    +
    +

    It has several nested partials,

    +
      + <% 5.times do %> +
    • + Partial: + <% @nesting = 5 %> + <%= render :partial => 'haml/rhtml/av_partial_2' %> + <% end %> +
    +
    diff --git a/vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_2.rhtml b/vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_2.rhtml new file mode 100644 index 0000000..e884a34 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/rhtml/_av_partial_2.rhtml @@ -0,0 +1,8 @@ +<% @nesting -= 1 %> +
    +

    This is a crazy deep-nested partial.

    +

    Nesting level <%= @nesting %>

    + <% if @nesting > 0 %> + <%= render :partial => 'haml/rhtml/av_partial_2' %> + <% end %> +
    diff --git a/vendor/gems/haml-2.2.16/test/haml/rhtml/action_view.rhtml b/vendor/gems/haml-2.2.16/test/haml/rhtml/action_view.rhtml new file mode 100644 index 0000000..bcb0d41 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/rhtml/action_view.rhtml @@ -0,0 +1,62 @@ + + + + Hampton Catlin Is Totally Awesome + + + +

    + This is very much like the standard template, + except that it has some ActionView-specific stuff. + It's only used for benchmarking. +

    +
    + <%= render :partial => 'haml/rhtml/av_partial_1' %> +
    + +
    + Yes, ladies and gentileman. He is just that egotistical. + Fantastic! This should be multi-line output + The question is if this would translate! Ahah! + <%= 1 + 9 + 8 + 2 %> + <%# numbers should work and this should be ignored %> +
    + <% 120.times do |number| -%> + <%= number %> + <% end -%> +
    <%= " Quotes should be loved! Just like people!" %>
    + Wow. +

    + <%= "Holy cow " + + "multiline " + + "tags! " + + "A pipe (|) even!" %> + <%= [1, 2, 3].collect { |n| "PipesIgnored|" } %> + <%= [1, 2, 3].collect { |n| + n.to_s + }.join("|") %> +

    +
    + <% foo = String.new + foo << "this" + foo << " shouldn't" + foo << " evaluate" %> + <%= foo + "but now it should!" %> + <%# Woah crap a comment! %> +
    +
      + <% ('a'..'f').each do |a|%> +
    • <%= a %> + <% end %> +
      <%= @should_eval = "with this text" %>
      + <%= [ 104, 101, 108, 108, 111 ].map do |byte| + byte.chr + end %> + + + diff --git a/vendor/gems/haml-2.2.16/test/haml/rhtml/standard.rhtml b/vendor/gems/haml-2.2.16/test/haml/rhtml/standard.rhtml new file mode 100644 index 0000000..8f5d097 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/rhtml/standard.rhtml @@ -0,0 +1,54 @@ + + + + Hampton Catlin Is Totally Awesome + + + + +
      + Yes, ladies and gentileman. He is just that egotistical. + Fantastic! This should be multi-line output + The question is if this would translate! Ahah! + <%= 1 + 9 + 8 + 2 %> + <%# numbers should work and this should be ignored %> +
      + <% 120.times do |number| -%> + <%= number %> + <% end -%> +
      <%= " Quotes should be loved! Just like people!" %>
      + Wow. +

      + <%= "Holy cow " + + "multiline " + + "tags! " + + "A pipe (|) even!" %> + <%= [1, 2, 3].collect { |n| "PipesIgnored|" }.join %> + <%= [1, 2, 3].collect { |n| + n.to_s + }.join("|") %> +

      +
      + <% foo = String.new + foo << "this" + foo << " shouldn't" + foo << " evaluate" %> + <%= foo + "but now it should!" %> + <%# Woah crap a comment! %> +
      +
        + <% ('a'..'f').each do |a|%> +
      • <%= a %>
      • + <% end %> +
        <%= @should_eval = "with this text" %>
        + <%= "foo".each_line do |line| + nil + end %> + + + diff --git a/vendor/gems/haml-2.2.16/test/haml/spec/README.md b/vendor/gems/haml-2.2.16/test/haml/spec/README.md new file mode 100644 index 0000000..95740c5 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/spec/README.md @@ -0,0 +1,97 @@ +# Haml Spec # + +Haml Spec provides a basic suite of tests for Haml interpreters. + +It is intented for developers who are creating or maintaining an implementation +of the [Haml](http://haml-lang.com) markup language. + +At the moment, there are test runners for the [original Haml](http://github.com/nex3/haml) +in Ruby, and for [Lua Haml](http://github.com/norman/lua-haml). Support for +other versions of Haml will be added if their developers/maintainers +are interested in using it. + +## The Tests ## + +The tests are kept in JSON format for portability across languages. Each test +is a JSON object with expected input, output, local variables and configuration +parameters (see below). The test suite only provides tests for features which +are portable, therefore no tests for script are provided, nor for external +filters such as :markdown or :textile. + +The one major exception to this are the tests for interpolation, which you may +need to modify with a regular expression to run under PHP or Perl, which +require a symbol before variable names. These tests are included despite being +less than 100% portable because interpolation is an important part of Haml and +can be tricky to implement. + +## Running the Tests ## + +### Ruby ### + +In order to make it as easy as possible for non-Ruby programmers to run the +Ruby Haml tests, the Ruby test runner uses test/unit, rather than something +fancier like Rspec. To run them you probably only need to install `haml`, and +possibly `ruby` if your platform doesn't come with it by default. If you're +using Ruby 1.8.x, you'll also need to install `json`: + + sudo gem install haml + # for Ruby 1.8.x; check using "ruby --version" if unsure + sudo gem install json + +Then, running the Ruby test suite is easy: + + ruby ruby_haml_test.rb + +### Lua ### + +The Lua test depends on [Telescope](http://telescope.luaforge.net/), +[jason4lua](http://json.luaforge.net/), and +[Lua Haml](http://github.com/norman/lua-haml). Install and +run `tsc lua_haml_spec.lua`. + +## Contributing ## + +### Getting it ### + +You can access the [Git repository](http://github.com/norman/haml-spec) at: + + git://github.com/norman/haml-spec.git + +Patches are *very* welcome, as are test runners for your Haml implementation. + +As long as any test you add run against Ruby Haml and are not redundant, I'll +be very happy to add them. + +### Test JSON format ### + + "test name" : { + "haml" : "haml input", + "html" : "expected html output", + "result" : "expected test result", + "locals" : "local vars", + "config" : "config params" + } + +* test name: This should be a *very* brief description of what's being tested. It can + be used by the test runners to name test methods, or to exclude certain tests from being + run. +* haml: The Haml code to be evaluated. Always required. +* html: The HTML output that should be generated. Required unless "result" is "error". +* result: Can be "pass" or "error". If it's absent, then "pass" is assumed. If it's "error", + then the goal of the test is to make sure that malformed Haml code generates an error. +* locals: An object containing local variables needed for the test. +* config: An object containing configuration parameters used to run the test. + The configuration parameters should be usable directly by Ruby's Haml with no + modification. If your implementation uses config parameters with different + names, you may need to process them to make them match your implementation. + If your implementation has options that do not exist in Ruby's Haml, then you + should add tests for this in your implementation's test rather than here. + +## License ## + + This project is released under the [WTFPL](http://sam.zoy.org/wtfpl/) in order + to be as usable as possible in any project, commercial or free. + +## Author ## + + [Norman Clarke](mailto:norman@njclarke.com) diff --git a/vendor/gems/haml-2.2.16/test/haml/spec/lua_haml_spec.lua b/vendor/gems/haml-2.2.16/test/haml/spec/lua_haml_spec.lua new file mode 100644 index 0000000..0998a1f --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/spec/lua_haml_spec.lua @@ -0,0 +1,30 @@ +require 'luarocks.require' +require 'json' +require 'telescope' +require 'haml' + +local function get_tests(filename) + local self = debug.getinfo(1).short_src + if self:match("/") then return "./" .. self:gsub("[^/]*%.lua$", "/" .. filename) + elseif self:match("\\") then return self:gsub("[^\\]*%.lua$", "\\" .. filename) + else return filename + end +end + +local fh = assert(io.open(get_tests("tests-new.json"))) +local input = fh:read '*a' +fh:close() + +local contexts = json.decode(input) + +describe("LuaHaml", function() + for context, expectations in pairs(contexts) do + describe("When handling " .. context, function() + for name, exp in pairs(expectations) do + it(string.format("should correctly render %s", name), function() + assert_equal(haml.render(exp.haml, exp.config or {}, exp.locals or {}), exp.html) + end) + end + end) + end +end) diff --git a/vendor/gems/haml-2.2.16/test/haml/spec/ruby_haml_test.rb b/vendor/gems/haml-2.2.16/test/haml/spec/ruby_haml_test.rb new file mode 100644 index 0000000..444ba2d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/spec/ruby_haml_test.rb @@ -0,0 +1,19 @@ +require "test/unit" +require "json" +require "haml" + +class HamlTest < Test::Unit::TestCase + contexts = JSON.parse(File.read(File.dirname(__FILE__) + "/tests.json")) + contexts.each do |context| + context[1].each do |name, test| + class_eval(<<-EOTEST) + def test_#{name.gsub(/\s+|[^a-zA-Z0-9_]/, "_")} + locals = Hash[*(#{test}["locals"] || {}).collect {|k, v| [k.to_sym, v] }.flatten] + options = Hash[*(#{test}["config"] || {}).collect {|k, v| [k.to_sym, v.to_sym] }.flatten] + engine = Haml::Engine.new(#{test}["haml"], options) + assert_equal(engine.render(Object.new, locals).chomp, #{test}["html"]) + end + EOTEST + end + end +end diff --git a/vendor/gems/haml-2.2.16/test/haml/spec/tests.json b/vendor/gems/haml-2.2.16/test/haml/spec/tests.json new file mode 100644 index 0000000..4337ee1 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/spec/tests.json @@ -0,0 +1,488 @@ +{ + "headers" : { + + "an XHTML XML prolog" : { + "haml" : "!!! XML", + "html" : "" + }, + + "an XHTML default (transitional) doctype" : { + "haml" : "!!!", + "html" : "" + }, + + "an XHTML 1.1 doctype" : { + "haml" : "!!! 1.1", + "html" : "" + }, + + "an XHTML 1.2 mobile doctype" : { + "haml" : "!!! mobile", + "html" : "" + }, + + "an XHTML 1.1 basic doctype" : { + "haml" : "!!! basic", + "html" : "" + }, + + "an XHTML 1.0 frameset doctype" : { + "haml" : "!!! frameset", + "html" : "" + }, + + "an HTML 5 XML prolog (silent)" : { + "haml" : "!!! XML", + "html" : "", + "config" : { + "format" : "html5" + } + }, + + "an HTML 5 doctype" : { + "haml" : "!!!", + "html" : "", + "config" : { + "format" : "html5" + } + }, + + "an HTML 4 XML prolog (silent)" : { + "haml" : "!!! XML", + "html" : "", + "config" : { + "format" : "html4" + } + }, + + "an HTML 4 default (transitional) doctype" : { + "haml" : "!!!", + "html" : "", + "config" : { + "format" : "html4" + } + }, + + "an HTML 4 frameset doctype" : { + "haml" : "!!! frameset", + "html" : "", + "config" : { + "format" : "html4" + } + }, + + "an HTML 4 strict doctype" : { + "haml" : "!!! strict", + "html" : "", + "config" : { + "format" : "html4" + } + } + + }, + + "basic Haml tags and CSS": { + + "a simple Haml tag" : { + "haml" : "%p", + "html" : "

        " + }, + + "a self-closing tag (XHTML)" : { + "haml" : "%meta", + "html" : "" + }, + + "a self-closing tag (HTML4)" : { + "haml" : "%meta", + "html" : "", + "config" : { + "format" : "html4" + } + }, + + "a self-closing tag (HTML5)" : { + "haml" : "%meta", + "html" : "", + "config" : { + "format" : "html5" + } + }, + + "a tag with a CSS class" : { + "haml" : "%p.class1", + "html" : "

        " + }, + + "a tag with multiple CSS classes" : { + "haml" : "%p.class1.class2", + "html" : "

        " + }, + + "a tag with a CSS id" : { + "haml" : "%p#id1", + "html" : "

        " + }, + + "a tag with multiple CSS id's" : { + "haml" : "%p#id1#id2", + "html" : "

        " + }, + + "a tag with a class followed by an id" : { + "haml" : "%p.class1#id1", + "html" : "

        " + }, + + "a tag with an id followed by a class" : { + "haml" : "%p#id1.class1", + "html" : "

        " + }, + + "an implicit div with a CSS id" : { + "haml" : "#id1", + "html" : "
        " + }, + + "an implicit div with a CSS class" : { + "haml" : ".class1", + "html" : "
        " + } + + }, + + "tags with unusual HTML characters" : { + + "a tag with colons" : { + "haml" : "%ns:tag", + "html" : "" + }, + + "a tag with underscores" : { + "haml" : "%snake_case", + "html" : "" + }, + + "a tag with dashes" : { + "haml" : "%dashed-tag", + "html" : "" + }, + + "a tag with camelCase" : { + "haml" : "%camelCase", + "html" : "" + }, + + "a tag with PascalCase" : { + "haml" : "%PascalCase", + "html" : "" + } + }, + + "tags with unusual CSS identifiers" : { + + "an all-numeric class" : { + "haml" : ".123", + "html" : "
        " + }, + + "a class with underscores" : { + "haml" : ".__", + "html" : "
        " + }, + + "a class with dashes" : { + "haml" : ".--", + "html" : "
        " + } + + }, + + "tags with inline content" : { + + "a simple tag" : { + "haml" : "%p hello", + "html" : "

        hello

        " + }, + + "a tag with CSS" : { + "haml" : "%p.class1 hello", + "html" : "

        hello

        " + } + + }, + + "tags with nested content" : { + + "a simple tag" : { + "haml" : "%p\n hello", + "html" : "

        \n hello\n

        " + }, + + "a tag with CSS" : { + "haml" : "%p.class1\n hello", + "html" : "

        \n hello\n

        " + } + + }, + + "tags with HTML-style attributes": { + + "one attribute" : { + "haml" : "%p(a='b')", + "html" : "

        " + }, + + "multiple attributes" : { + "haml" : "%p(a='b' c='d')", + "html" : "

        " + }, + + "attributes separated with newlines" : { + "haml" : "%p(a='b'\n c='d')", + "html" : "

        " + }, + + "an interpolated attribute" : { + "haml" : "%p(a=\"#{var}\")", + "html" : "

        ", + "locals" : { + "var" : "value" + } + }, + + "'class' as an attribute" : { + "haml" : "%p(class='class1')", + "html" : "

        " + }, + + "a tag with a CSS class and 'class' as an attribute" : { + "haml" : "%p.class2(class='class1')", + "html" : "

        " + }, + + "a tag with 'id' as an attribute" : { + "haml" : "%p(id='1')", + "html" : "

        " + }, + + "a tag with a CSS id and 'id' as an attribute" : { + "haml" : "%p#id(id='1')", + "html" : "

        " + }, + + "a tag with a variable attribute" : { + "haml" : "%p(class=var)", + "html" : "

        ", + "locals" : { + "var" : "hello" + } + }, + + "a tag with a CSS class and 'class' as a variable attribute" : { + "haml" : ".hello(class=var)", + "html" : "
        ", + "locals" : { + "var" : "world" + } + }, + + "a tag multiple CSS classes (sorted correctly)" : { + "haml" : ".z(class=var)", + "html" : "
        ", + "locals" : { + "var" : "a" + } + } + + }, + + "tags with Ruby-style attributes": { + + "one attribute" : { + "haml" : "%p{:a => 'b'}", + "html" : "

        " + }, + + "attributes hash with whitespace" : { + "haml" : "%p{ :a => 'b' }", + "html" : "

        " + }, + + "an interpolated attribute" : { + "haml" : "%p{:a =>\"#{var}\"}", + "html" : "

        ", + "locals" : { + "var" : "value" + } + }, + + "multiple attributes" : { + "haml" : "%p{ :a => 'b', 'c' => 'd' }", + "html" : "

        " + }, + + "attributes separated with newlines" : { + "haml" : "%p{ :a => 'b',\n 'c' => 'd' }", + "html" : "

        " + }, + + "'class' as an attribute" : { + "haml" : "%p{:class => 'class1'}", + "html" : "

        " + }, + + "a tag with a CSS class and 'class' as an attribute" : { + "haml" : "%p.class2{:class => 'class1'}", + "html" : "

        " + }, + + "a tag with 'id' as an attribute" : { + "haml" : "%p{:id => '1'}", + "html" : "

        " + }, + + "a tag with a CSS id and 'id' as an attribute" : { + "haml" : "%p#id{:id => '1'}", + "html" : "

        " + }, + + "a tag with a CSS id and a numeric 'id' as an attribute" : { + "haml" : "%p#id{:id => 1}", + "html" : "

        " + }, + + "a tag with a variable attribute" : { + "haml" : "%p{:class => var}", + "html" : "

        ", + "locals" : { + "var" : "hello" + } + }, + + "a tag with a CSS class and 'class' as a variable attribute" : { + "haml" : ".hello{:class => var}", + "html" : "
        ", + "locals" : { + "var" : "world" + } + }, + + "a tag multiple CSS classes (sorted correctly)" : { + "haml" : ".z{:class => var}", + "html" : "
        ", + "locals" : { + "var" : "a" + } + }, + + "an interpolated attribute" : { + "haml" : "%p{:a =>\"#{var}\"}", + "html" : "

        ", + "locals" : { + "var" : "value" + } + } + + }, + + "silent comments" : { + + "an inline comment" : { + "haml" : "-# hello", + "html" : "" + }, + + "a nested comment" : { + "haml" : "-#\n hello", + "html" : "" + } + + }, + + "markup comments" : { + + "an inline comment" : { + "haml" : "/ comment", + "html" : "" + }, + + "a nested comment" : { + "haml" : "/\n comment\n comment2", + "html" : "" + } + }, + + "conditional comments": { + "a conditional comment" : { + "haml" : "/[if IE]\n %p a", + "html" : "" + } + }, + + "internal filters": { + + "content in an 'escaped' filter" : { + "haml" : ":escaped\n <&\">", + "html" : "<&">" + }, + + "content in a 'preserve' filter" : { + "haml" : ":preserve\n hello\n\n%p", + "html" : "hello \n

        " + }, + + "content in a 'plain' filter" : { + "haml" : ":plain\n hello\n\n%p", + "html" : "hello\n

        " + }, + + "content in a 'javascript' filter" : { + "haml" : ":javascript\n a();\n%p", + "html" : "\n

        " + } + + }, + + "interpolation": { + + "interpolation inside code" : { + "haml" : "%p= \"#{var}\"", + "html" : "

        value

        ", + "locals" : { + "var" : "value" + } + }, + + "interpolation inside inline content" : { + "haml" : "%p #{var}", + "html" : "

        value

        ", + "locals" : { + "var" : "value" + } + }, + + "no interpolation when escaped" : { + "haml" : "%p \\#{var}", + "html" : "

        #{var}

        " + }, + + "interpolation when the escape character is escaped" : { + "haml" : "%p \\\\#{var}", + "html" : "

        \\value

        ", + "locals" : { + "var" : "value" + } + }, + + "interpolation inside filtered content" : { + "haml" : ":plain\n #{var} interpolated: #{var}", + "html" : "value interpolated: value", + "locals" : { + "var" : "value" + } + } + + } + +} diff --git a/vendor/gems/haml-2.2.16/test/haml/template_test.rb b/vendor/gems/haml-2.2.16/test/haml/template_test.rb new file mode 100644 index 0000000..e813ee9 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/template_test.rb @@ -0,0 +1,296 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../test_helper' +require 'haml/template' +require 'sass/plugin' +require File.dirname(__FILE__) + '/mocks/article' + +require 'action_pack/version' + +module Haml::Filters::Test + include Haml::Filters::Base + + def render(text) + "TESTING HAHAHAHA!" + end +end + +module Haml::Helpers + def test_partial(name, locals = {}) + Haml::Engine.new(File.read(File.join(TemplateTest::TEMPLATE_PATH, "_#{name}.haml"))).render(self, locals) + end +end + +class Egocentic + def method_missing(*args) + self + end +end + +class DummyController + attr_accessor :logger + def initialize + @logger = Egocentic.new + end + + def self.controller_path + '' + end + + def controller_path + '' + end +end + +class TemplateTest < Test::Unit::TestCase + TEMPLATE_PATH = File.join(File.dirname(__FILE__), "templates") + TEMPLATES = %w{ very_basic standard helpers + whitespace_handling original_engine list helpful + silent_script tag_parsing just_stuff partials + filters nuke_outer_whitespace nuke_inner_whitespace + render_layout } + # partial layouts were introduced in 2.0.0 + TEMPLATES << 'partial_layout' unless ActionPack::VERSION::MAJOR < 2 + + def setup + @base = create_base + + # filters template uses :sass + Sass::Plugin.options.update(:line_comments => true, :style => :compact) + end + + def create_base + vars = { 'article' => Article.new, 'foo' => 'value one' } + + unless Haml::Util.has?(:instance_method, ActionView::Base, :finder) + base = ActionView::Base.new(TEMPLATE_PATH, vars) + else + # Rails 2.1.0 + base = ActionView::Base.new([], vars) + base.finder.append_view_path(TEMPLATE_PATH) + end + + if Haml::Util.has?(:private_method, base, :evaluate_assigns) + base.send(:evaluate_assigns) + else + # Rails 2.2 + base.send(:_evaluate_assigns_and_ivars) + end + + # This is used by form_for. + # It's usually provided by ActionController::Base. + def base.protect_against_forgery?; false; end + + base.controller = DummyController.new + base + end + + def render(text, opts = {}) + return @base.render(:inline => text, :type => :haml) if opts == :action_view + Haml::Engine.new(text, opts).to_html(@base) + end + + def load_result(name) + @result = '' + File.new(File.dirname(__FILE__) + "/results/#{name}.xhtml").each_line { |l| @result += l } + @result + end + + def assert_renders_correctly(name, &render_method) + old_options = Haml::Template.options.dup + Haml::Template.options[:escape_html] = false + if ActionPack::VERSION::MAJOR < 2 || + (ActionPack::VERSION::MAJOR == 2 && ActionPack::VERSION::MINOR < 2) + render_method ||= proc { |name| @base.render(name) } + else + render_method ||= proc { |name| @base.render(:file => name) } + end + + load_result(name).split("\n").zip(render_method[name].split("\n")).each_with_index do |pair, line| + message = "template: #{name}\nline: #{line}" + assert_equal(pair.first, pair.last, message) + end + rescue Haml::Util.av_template_class(:Error) => e + if e.message =~ /Can't run [\w:]+ filter; required (one of|file) ((?:'\w+'(?: or )?)+)(, but none were found| not found)/ + puts "\nCouldn't require #{$2}; skipping a test." + else + raise e + end + ensure + Haml::Template.options = old_options + end + + def test_empty_render_should_remain_empty + assert_equal('', render('')) + end + + TEMPLATES.each do |template| + define_method "test_template_should_render_correctly [template: #{template}] " do + assert_renders_correctly template + end + end + + def test_templates_should_render_correctly_with_render_proc + assert_renders_correctly("standard") do |name| + engine = Haml::Engine.new(File.read(File.dirname(__FILE__) + "/templates/#{name}.haml")) + engine.render_proc(@base).call + end + end + + def test_templates_should_render_correctly_with_def_method + assert_renders_correctly("standard") do |name| + engine = Haml::Engine.new(File.read(File.dirname(__FILE__) + "/templates/#{name}.haml")) + engine.def_method(@base, "render_standard") + @base.render_standard + end + end + + if ActionPack::VERSION::MAJOR < 3 + # Rails 3.0.0 deprecates the use of yield with a layout + # for calls to render :file + def test_action_view_templates_render_correctly + proc = lambda do + @base.content_for(:layout) {'Lorem ipsum dolor sit amet'} + assert_renders_correctly 'content_for_layout' + end + + if @base.respond_to?(:with_output_buffer) + @base.with_output_buffer("", &proc) + else + proc.call + end + end + end + + def test_instance_variables_should_work_inside_templates + @base.instance_variable_set("@content_for_layout", 'something') + assert_equal("

        something

        ", render("%p= @content_for_layout").chomp) + + @base.instance_eval("@author = 'Hampton Catlin'") + assert_equal("
        Hampton Catlin
        ", render(".author= @author").chomp) + + @base.instance_eval("@author = 'Hampton'") + assert_equal("Hampton", render("= @author").chomp) + + @base.instance_eval("@author = 'Catlin'") + assert_equal("Catlin", render("= @author").chomp) + end + + def test_instance_variables_should_work_inside_attributes + @base.instance_eval("@author = 'hcatlin'") + assert_equal("

        foo

        ", render("%p{:class => @author} foo").chomp) + end + + def test_template_renders_should_eval + assert_equal("2\n", render("= 1+1")) + end + + def test_haml_options + old_options = Haml::Template.options.dup + Haml::Template.options[:suppress_eval] = true + old_base, @base = @base, create_base + assert_renders_correctly("eval_suppressed") + ensure + @base = old_base + Haml::Template.options = old_options + end + + def test_with_output_buffer_with_ugly + return unless Haml::Util.has?(:instance_method, ActionView::Base, :with_output_buffer) + assert_equal(< true)) +

        +foo +baz +

        +HTML +%p + foo + - with_output_buffer do + bar + = "foo".gsub(/./) do |s| + - "flup" + baz +HAML + end + + def test_exceptions_should_work_correctly + begin + render("- raise 'oops!'") + rescue Exception => e + assert_equal("oops!", e.message) + assert_match(/^\(haml\):1/, e.backtrace[0]) + else + assert false + end + + template = < e + assert_match(/^\(haml\):5/, e.backtrace[0]) + else + assert false + end + end + + ## XSS Protection Tests + + # In order to enable these, either test against Rails 3.0 + # or test against Rails 2.2.5+ with the rails_xss plugin + # (http://github.com/NZKoz/rails_xss) in test/plugins. + if Haml::Util.rails_xss_safe? + def test_escape_html_option_set + assert Haml::Template.options[:escape_html] + end + + def test_xss_protection + assert_equal("Foo & Bar\n", render('= "Foo & Bar"', :action_view)) + end + + def test_xss_protection_with_safe_strings + assert_equal("Foo & Bar\n", render('= "Foo & Bar".html_safe!', :action_view)) + end + + def test_xss_protection_with_bang + assert_equal("Foo & Bar\n", render('!= "Foo & Bar"', :action_view)) + end + + def test_xss_protection_in_interpolation + assert_equal("Foo & Bar\n", render('Foo #{"&"} Bar', :action_view)) + end + + def test_xss_protection_with_bang_in_interpolation + assert_equal("Foo & Bar\n", render('! Foo #{"&"} Bar', :action_view)) + end + + def test_xss_protection_with_safe_strings_in_interpolation + assert_equal("Foo & Bar\n", render('Foo #{"&".html_safe!} Bar', :action_view)) + end + + def test_xss_protection_with_mixed_strings_in_interpolation + assert_equal("Foo & Bar & Baz\n", render('Foo #{"&".html_safe!} Bar #{"&"} Baz', :action_view)) + end + + def test_rendered_string_is_html_safe + assert(render("Foo").html_safe?) + end + + def test_rendered_string_is_html_safe_with_action_view + assert(render("Foo", :action_view).html_safe?) + end + + def test_xss_html_escaping_with_non_strings + assert_equal("4\n", render("= html_escape(4)")) + end + end +end diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1.haml b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1.haml new file mode 100644 index 0000000..7f47f72 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1.haml @@ -0,0 +1,9 @@ +%h2 This is a pretty complicated partial +.partial + %p It has several nested partials, + %ul + - 5.times do + %li + %strong Partial: + - @nesting = 5 + = render :partial => 'haml/templates/av_partial_2' \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1_ugly.haml b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1_ugly.haml new file mode 100644 index 0000000..73e0ca7 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_1_ugly.haml @@ -0,0 +1,9 @@ +%h2 This is a pretty complicated partial +.partial + %p It has several nested partials, + %ul + - 5.times do + %li + %strong Partial: + - @nesting = 5 + = render :partial => 'haml/templates/av_partial_2_ugly' \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2.haml b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2.haml new file mode 100644 index 0000000..c8a313d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2.haml @@ -0,0 +1,5 @@ +- @nesting -= 1 +.partial{:level => @nesting} + %h3 This is a crazy deep-nested partial. + %p== Nesting level #{@nesting} + = render :partial => 'haml/templates/av_partial_2' if @nesting > 0 \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2_ugly.haml b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2_ugly.haml new file mode 100644 index 0000000..088a3c3 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_av_partial_2_ugly.haml @@ -0,0 +1,5 @@ +- @nesting -= 1 +.partial{:level => @nesting} + %h3 This is a crazy deep-nested partial. + %p== Nesting level #{@nesting} + = render :partial => 'haml/templates/av_partial_2_ugly' if @nesting > 0 \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_layout.erb b/vendor/gems/haml-2.2.16/test/haml/templates/_layout.erb new file mode 100644 index 0000000..91c839d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_layout.erb @@ -0,0 +1,3 @@ +Before +<%= yield -%> +After diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_layout_for_partial.haml b/vendor/gems/haml-2.2.16/test/haml/templates/_layout_for_partial.haml new file mode 100644 index 0000000..7cf538b --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_layout_for_partial.haml @@ -0,0 +1,3 @@ +.partial-layout + %h2 This is inside a partial layout + = yield \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_partial.haml b/vendor/gems/haml-2.2.16/test/haml/templates/_partial.haml new file mode 100644 index 0000000..756b54b --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_partial.haml @@ -0,0 +1,8 @@ +%p + @foo = + = @foo +- @foo = 'value three' +== Toplevel? #{haml_buffer.toplevel?} +%p + @foo = + = @foo diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/_text_area.haml b/vendor/gems/haml-2.2.16/test/haml/templates/_text_area.haml new file mode 100644 index 0000000..896b975 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/_text_area.haml @@ -0,0 +1,3 @@ +.text_area_test_area + ~ "" += "" diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/action_view.haml b/vendor/gems/haml-2.2.16/test/haml/templates/action_view.haml new file mode 100644 index 0000000..5b9fa04 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/action_view.haml @@ -0,0 +1,47 @@ +!!! +%html{html_attrs} + %head + %title Hampton Catlin Is Totally Awesome + %meta{"http-equiv" => "Content-Type", :content => "text/html; charset=utf-8"} + %body + %h1 + This is very much like the standard template, + except that it has some ActionView-specific stuff. + It's only used for benchmarking. + .crazy_partials= render :partial => 'haml/templates/av_partial_1' + / You're In my house now! + .header + Yes, ladies and gentileman. He is just that egotistical. + Fantastic! This should be multi-line output + The question is if this would translate! Ahah! + = 1 + 9 + 8 + 2 #numbers should work and this should be ignored + #body= " Quotes should be loved! Just like people!" + - 120.times do |number| + - number + Wow.| + %p + = "Holy cow " + | + "multiline " + | + "tags! " + | + "A pipe (|) even!" | + = [1, 2, 3].collect { |n| "PipesIgnored|" } + = [1, 2, 3].collect { |n| | + n.to_s | + }.join("|") | + %div.silent + - foo = String.new + - foo << "this" + - foo << " shouldn't" + - foo << " evaluate" + = foo + " but now it should!" + -# Woah crap a comment! + + -# That was a line that shouldn't close everything. + %ul.really.cool + - ('a'..'f').each do |a| + %li= a + #combo.of_divs_with_underscore= @should_eval = "with this text" + = [ 104, 101, 108, 108, 111 ].map do |byte| + - byte.chr + .footer + %strong.shout= "This is a really long ruby quote. It should be loved and wrapped because its more than 50 characters. This value may change in the future and this test may look stupid. \nSo, I'm just making it *really* long. God, I hope this works" diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/action_view_ugly.haml b/vendor/gems/haml-2.2.16/test/haml/templates/action_view_ugly.haml new file mode 100644 index 0000000..5f0551e --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/action_view_ugly.haml @@ -0,0 +1,47 @@ +!!! +%html{html_attrs} + %head + %title Hampton Catlin Is Totally Awesome + %meta{"http-equiv" => "Content-Type", :content => "text/html; charset=utf-8"} + %body + %h1 + This is very much like the standard template, + except that it has some ActionView-specific stuff. + It's only used for benchmarking. + .crazy_partials= render :partial => 'haml/templates/av_partial_1_ugly' + / You're In my house now! + .header + Yes, ladies and gentileman. He is just that egotistical. + Fantastic! This should be multi-line output + The question is if this would translate! Ahah! + = 1 + 9 + 8 + 2 #numbers should work and this should be ignored + #body= " Quotes should be loved! Just like people!" + - 120.times do |number| + - number + Wow.| + %p + = "Holy cow " + | + "multiline " + | + "tags! " + | + "A pipe (|) even!" | + = [1, 2, 3].collect { |n| "PipesIgnored|" } + = [1, 2, 3].collect { |n| | + n.to_s | + }.join("|") | + %div.silent + - foo = String.new + - foo << "this" + - foo << " shouldn't" + - foo << " evaluate" + = foo + " but now it should!" + -# Woah crap a comment! + + -# That was a line that shouldn't close everything. + %ul.really.cool + - ('a'..'f').each do |a| + %li= a + #combo.of_divs_with_underscore= @should_eval = "with this text" + = [ 104, 101, 108, 108, 111 ].map do |byte| + - byte.chr + .footer + %strong.shout= "This is a really long ruby quote. It should be loved and wrapped because its more than 50 characters. This value may change in the future and this test may look stupid. \nSo, I'm just making it *really* long. God, I hope this works" diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/breakage.haml b/vendor/gems/haml-2.2.16/test/haml/templates/breakage.haml new file mode 100644 index 0000000..57c1734 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/breakage.haml @@ -0,0 +1,8 @@ +%p + %h1 Hello! + = "lots of lines" + - raise "Oh no!" + %p + this is after the exception + %strong yes it is! +ho ho ho. diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/content_for_layout.haml b/vendor/gems/haml-2.2.16/test/haml/templates/content_for_layout.haml new file mode 100644 index 0000000..e9d7e6d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/content_for_layout.haml @@ -0,0 +1,8 @@ +!!! +%html + %head + %body + #yieldy + = yield :layout + #nosym + = yield diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/eval_suppressed.haml b/vendor/gems/haml-2.2.16/test/haml/templates/eval_suppressed.haml new file mode 100644 index 0000000..1e3c034 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/eval_suppressed.haml @@ -0,0 +1,11 @@ += "not me!" += "nor me!" +- haml_concat "not even me!" +%p= "NO!" +%p~ "UH-UH!" +%h1 Me! +#foo + %p#bar All + %br/ + %p.baz This + Should render diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/filters.haml b/vendor/gems/haml-2.2.16/test/haml/templates/filters.haml new file mode 100644 index 0000000..dc5494d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/filters.haml @@ -0,0 +1,66 @@ +%style + - width = 5 + 17 + :sass + p + :border + :style dotted + :width #{width}px + :color #ff00ff + h1 + :font-weight normal + +:test + This + Should + Not + Print + +%p + :javascript + function newline(str) { + return "\n" + str; + } + +:plain + This + Is + Plain + Text + %strong right? + \#{not interpolated} + \\#{1 + 2} + \\\#{also not} + \\ + +- last = "noitalo" +%p + %pre + :preserve + This pre is pretty deeply + nested. + Does #{"interp" + last.reverse} work? + :preserve + This one is, too. + Nested, that is. + +- num = 10 +%ul + :erb + <% num.times do |c| %> +
      • <%= (c+97).chr %>
      • + <% end %> + <% res = 178 %> + +.res= res + += "Text!" + +- var = "Hello" +:ruby + printf "%s, World!\n", var + print "How are you doing today?\n" + +:escaped +
        +

        I think — or do I?

        +
        diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/helpers.haml b/vendor/gems/haml-2.2.16/test/haml/templates/helpers.haml new file mode 100644 index 0000000..07f7884 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/helpers.haml @@ -0,0 +1,95 @@ += h("&&&&&&&&&&&") # This is an ActionView Helper... should load +- foo = capture do # This ActionView Helper is designed for ERB, but should work with haml + %div + %p.title Title + %p.text + Woah this is really crazy + I mean wow, + man. +- 3.times do + = foo +%p foo +- tab_up +%p reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeally loooooooooooooooooong +- tab_down +.woah + #funky + = capture_haml do + %div + %h1 Big! + %p Small + / Invisible + = capture do + .dilly + %p foo + %h1 bar + = surround '(', ')' do + %strong parentheses! += precede '*' do + %span.small Not really +click += succeed '.' do + %a{:href=>"thing"} here +%p baz +- haml_buffer.tabulation = 10 +%p boom +- concat "foo\n" +- haml_buffer.tabulation = 0 +-# +-# ActionPack pre-2.0 has weird url_for issues here. +- if ActionPack::VERSION::MAJOR < 2 + :plain +

        +

        +

        +
        + +
        +

        + @foo = + value one +

        + Toplevel? false +

        + @foo = + value three +

        + +
        + Title: + + Body: + +
        +
        +- else + %p + = form_tag '' + %div + - form_tag '' do + %div= submit_tag 'save' + - @foo = 'value one' + = test_partial 'partial' + - form_for :article, @article, :url => '' do |f| + Title: + = f.text_field :title + Body: + = f.text_field :body += list_of({:google => 'http://www.google.com'}) do |name, link| + %a{ :href => link }= name +%p + - haml_concat "foo" + %div + - haml_concat "bar" + - haml_concat "boom" + baz + - haml_concat "boom, again" +- haml_tag :table do + - haml_tag :tr do + - haml_tag :td, {:class => 'cell'} do + - haml_tag :strong, "strong!" + - haml_concat "data" + - haml_tag :td do + - haml_concat "more_data" +- haml_tag :hr +- haml_tag :div, '' diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/helpful.haml b/vendor/gems/haml-2.2.16/test/haml/templates/helpful.haml new file mode 100644 index 0000000..3e44a50 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/helpful.haml @@ -0,0 +1,11 @@ +%div[@article] + %h1= @article.title + %div= @article.body +#id[@article] id +.class[@article] class +#id.class[@article] id class +%div{:class => "article full"}[@article]= "boo" +%div{'class' => "article full"}[@article]= "moo" +%div.articleFull[@article]= "foo" +%span[@not_a_real_variable_and_will_be_nil] + Boo diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/just_stuff.haml b/vendor/gems/haml-2.2.16/test/haml/templates/just_stuff.haml new file mode 100644 index 0000000..29c4d57 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/just_stuff.haml @@ -0,0 +1,83 @@ +!!! XML +!!! XML ISO-8859-1 +!!! XML UtF-8 Foo bar +!!! +!!! 1.1 +!!! 1.1 Strict +!!! Strict foo bar +!!! FRAMESET +%strong{:apos => "Foo's bar!"} Boo! +== Embedded? false! +== Embedded? #{true}! +- embedded = true +== Embedded? #{embedded}! +== Embedded? #{"twice! #{true}"}! +== Embedded? #{"one"} af"t"er #{"another"}! +%p== Embedded? false! +%p== Embedded? #{true}! +- embedded = true +%p== Embedded? #{embedded}! +%p== Embedded? #{"twice! #{true}"}! +%p== Embedded? #{"one"} af"t"er #{"another"}! += "stuff followed by whitespace" + +- if true + + %strong block with whitespace +%p + \Escape + \- character + \%p foo + \yee\ha +/ Short comment +/ + This is a block comment + cool, huh? + %strong there can even be sub-tags! + = "Or script!" +-# Haml comment +-# + Nested Haml comment + - raise 'dead' +%p{ :class => "" } class attribute should appear! +%p{ :gorbachev => nil } this attribute shouldn't appear +/[if lte IE6] conditional comment! +/[if gte IE7] + %p Block conditional comment + %div + %h1 Cool, eh? +/[if gte IE5.2] + Woah a period. += "test" | + "test" | +-# Hard tabs shouldn't throw errors. + +- case :foo +- when :bar + %br Blah +- when :foo + %br +- case :foo + - when :bar + %meta{ :foo => 'blah'} + - when :foo + %meta{ :foo => 'bar'} +%img +%hr +%link +%script Inline content +%br + Nested content +%p.foo{:class => true ? 'bar' : 'baz'}[@article] Blah +%p.foo{:class => false ? 'bar' : ''}[@article] Blah +%p.qux{:class => 'quux'}[@article] Blump +== #{"Woah inner quotes"} +%p.dynamic_quote{:quotes => "single '", :dyn => 1 + 2} +%p.dynamic_self_closing{:dyn => 1 + 2}/ +%body + :plain + hello + %div + + %img + diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/list.haml b/vendor/gems/haml-2.2.16/test/haml/templates/list.haml new file mode 100644 index 0000000..40a80e6 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/list.haml @@ -0,0 +1,12 @@ +!Not a Doctype! +%ul + %li a + %li b + %li c + %li d + %li e + %li f + %li g + %li h + %li i + diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/nuke_inner_whitespace.haml b/vendor/gems/haml-2.2.16/test/haml/templates/nuke_inner_whitespace.haml new file mode 100644 index 0000000..8eebd41 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/nuke_inner_whitespace.haml @@ -0,0 +1,32 @@ +%p + %q< Foo +%p + %q{:a => 1 + 1}< Foo +%p + %q<= "Foo\nBar" +%p + %q{:a => 1 + 1}<= "Foo\nBar" +%p + %q< + Foo + Bar +%p + %q{:a => 1 + 1}< + Foo + Bar +%p + %q< + %div + Foo + Bar +%p + %q{:a => 1 + 1}< + %div + Foo + Bar + +-# Regression test +%p + %q<= "foo" + %q{:a => 1 + 1} + bar diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/nuke_outer_whitespace.haml b/vendor/gems/haml-2.2.16/test/haml/templates/nuke_outer_whitespace.haml new file mode 100644 index 0000000..1e2a7f5 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/nuke_outer_whitespace.haml @@ -0,0 +1,144 @@ +%p + %p + %q> + Foo +%p + %p + %q{:a => 1 + 1}> + Foo +%p + %p + %q> Foo +%p + %p + %q{:a => 1 + 1}> Foo +%p + %p + %q> + = "Foo" +%p + %p + %q{:a => 1 + 1}> + = "Foo" +%p + %p + %q>= "Foo" +%p + %p + %q{:a => 1 + 1}>= "Foo" +%p + %p + %q> + = "Foo\nBar" +%p + %p + %q{:a => 1 + 1}> + = "Foo\nBar" +%p + %p + %q>= "Foo\nBar" +%p + %p + %q{:a => 1 + 1}>= "Foo\nBar" +%p + %p + - tab_up + foo + %q> + Foo + bar + - tab_down +%p + %p + - tab_up + foo + %q{:a => 1 + 1}> + Foo + bar + - tab_down +%p + %p + - tab_up + foo + %q> Foo + bar + - tab_down +%p + %p + - tab_up + foo + %q{:a => 1 + 1}> Foo + bar + - tab_down +%p + %p + - tab_up + foo + %q> + = "Foo" + bar + - tab_down +%p + %p + - tab_up + foo + %q{:a => 1 + 1}> + = "Foo" + bar + - tab_down +%p + %p + - tab_up + foo + %q>= "Foo" + bar + - tab_down +%p + %p + - tab_up + foo + %q{:a => 1 + 1}>= "Foo" + bar + - tab_down +%p + %p + - tab_up + foo + %q> + = "Foo\nBar" + bar + - tab_down +%p + %p + - tab_up + foo + %q{:a => 1 + 1}> + = "Foo\nBar" + bar + - tab_down +%p + %p + - tab_up + foo + %q>= "Foo\nBar" + bar + - tab_down +%p + %p + - tab_up + foo + %q{:a => 1 + 1}>= "Foo\nBar" + bar + - tab_down +%p + %p + %q> +%p + %p + %q>/ +%p + %p + %q{:a => 1 + 1}> +%p + %p + %q{:a => 1 + 1}>/ diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/original_engine.haml b/vendor/gems/haml-2.2.16/test/haml/templates/original_engine.haml new file mode 100644 index 0000000..df31a5a --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/original_engine.haml @@ -0,0 +1,17 @@ +!!! +%html + %head + %title Stop. haml time + #content + %h1 This is a title! + %p Lorem ipsum dolor sit amet, consectetur adipisicing elit + %p{:class => 'foo'} Cigarettes! + %h2 Man alive! + %ul.things + %li Slippers + %li Shoes + %li Bathrobe + %li Coffee + %pre + This is some text that's in a pre block! + Let's see what happens when it's rendered! What about now, since we're on a new line? diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/partial_layout.haml b/vendor/gems/haml-2.2.16/test/haml/templates/partial_layout.haml new file mode 100644 index 0000000..b6373b3 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/partial_layout.haml @@ -0,0 +1,3 @@ +%h1 Partial layout used with for block: +- render :layout => 'layout_for_partial.haml' do + %p Some content within a layout \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/partialize.haml b/vendor/gems/haml-2.2.16/test/haml/templates/partialize.haml new file mode 100644 index 0000000..327d90d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/partialize.haml @@ -0,0 +1 @@ += render :file => "#{name}.haml" diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/partials.haml b/vendor/gems/haml-2.2.16/test/haml/templates/partials.haml new file mode 100644 index 0000000..d74f4b4 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/partials.haml @@ -0,0 +1,12 @@ +- @foo = 'value one' +%p + @foo = + = @foo +- @foo = 'value two' +%p + @foo = + = @foo += test_partial "partial" +%p + @foo = + = @foo diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/render_layout.haml b/vendor/gems/haml-2.2.16/test/haml/templates/render_layout.haml new file mode 100644 index 0000000..549742b --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/render_layout.haml @@ -0,0 +1,2 @@ += render :layout => 'layout' do + During diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/silent_script.haml b/vendor/gems/haml-2.2.16/test/haml/templates/silent_script.haml new file mode 100644 index 0000000..45199f0 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/silent_script.haml @@ -0,0 +1,40 @@ +%div + %h1 I can count! + - (1..20).each do |i| + = i + %h1 I know my ABCs! + %ul + - ('a'..'z').each do |i| + %li= i + %h1 I can catch errors! + - begin + - String.silly + - rescue NameError => e + = "Oh no! \"#{e}\" happened!" + %p + "false" is: + - if false + = "true" + - else + = "false" + - if true + - 5.times do |i| + - if i % 2 == 1 + Odd! + - else + Even! + - else + = "This can't happen!" +- 13 | +.foo + %strong foobar +- 5.times | + do | + |a| | + %strong= a +.test + - "foo | + bar | + baz" | + + %p boom diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/standard.haml b/vendor/gems/haml-2.2.16/test/haml/templates/standard.haml new file mode 100644 index 0000000..0126ac7 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/standard.haml @@ -0,0 +1,42 @@ +!!! +%html{:xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en-US", "lang" => "en-US"} + %head + %title Hampton Catlin Is Totally Awesome + %meta{"http-equiv" => "Content-Type", :content => "text/html; charset=utf-8"} + %body + / You're In my house now! + .header + Yes, ladies and gentileman. He is just that egotistical. + Fantastic! This should be multi-line output + The question is if this would translate! Ahah! + = 1 + 9 + 8 + 2 #numbers should work and this should be ignored + #body= " Quotes should be loved! Just like people!" + - 120.times do |number| + = number + Wow.| + %p + = "Holy cow " + | + "multiline " + | + "tags! " + | + "A pipe (|) even!" | + = [1, 2, 3].collect { |n| "PipesIgnored|" }.join + = [1, 2, 3].collect { |n| | + n.to_s | + }.join("|") | + %div.silent + - foo = String.new + - foo << "this" + - foo << " shouldn't" + - foo << " evaluate" + = foo + " but now it should!" + -# Woah crap a comment! + + -# That was a line that shouldn't close everything. + %ul.really.cool + - ('a'..'f').each do |a| + %li= a + #combo.of_divs_with_underscore= @should_eval = "with this text" + = "foo".each_line do |line| + - nil + .footer + %strong.shout= "This is a really long ruby quote. It should be loved and wrapped because its more than 50 characters. This value may change in the future and this test may look stupid. \nSo, I'm just making it *really* long. God, I hope this works" diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/standard_ugly.haml b/vendor/gems/haml-2.2.16/test/haml/templates/standard_ugly.haml new file mode 100644 index 0000000..0126ac7 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/standard_ugly.haml @@ -0,0 +1,42 @@ +!!! +%html{:xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en-US", "lang" => "en-US"} + %head + %title Hampton Catlin Is Totally Awesome + %meta{"http-equiv" => "Content-Type", :content => "text/html; charset=utf-8"} + %body + / You're In my house now! + .header + Yes, ladies and gentileman. He is just that egotistical. + Fantastic! This should be multi-line output + The question is if this would translate! Ahah! + = 1 + 9 + 8 + 2 #numbers should work and this should be ignored + #body= " Quotes should be loved! Just like people!" + - 120.times do |number| + = number + Wow.| + %p + = "Holy cow " + | + "multiline " + | + "tags! " + | + "A pipe (|) even!" | + = [1, 2, 3].collect { |n| "PipesIgnored|" }.join + = [1, 2, 3].collect { |n| | + n.to_s | + }.join("|") | + %div.silent + - foo = String.new + - foo << "this" + - foo << " shouldn't" + - foo << " evaluate" + = foo + " but now it should!" + -# Woah crap a comment! + + -# That was a line that shouldn't close everything. + %ul.really.cool + - ('a'..'f').each do |a| + %li= a + #combo.of_divs_with_underscore= @should_eval = "with this text" + = "foo".each_line do |line| + - nil + .footer + %strong.shout= "This is a really long ruby quote. It should be loved and wrapped because its more than 50 characters. This value may change in the future and this test may look stupid. \nSo, I'm just making it *really* long. God, I hope this works" diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/tag_parsing.haml b/vendor/gems/haml-2.2.16/test/haml/templates/tag_parsing.haml new file mode 100644 index 0000000..f142ebb --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/tag_parsing.haml @@ -0,0 +1,21 @@ +%div.tags + %foo 1 + %FOO 2 + %fooBAR 3 + %fooBar 4 + %foo_bar 5 + %foo-bar 6 + %foo:bar 7 + %foo.bar 8 + %fooBAr_baz:boom_bar 9 + %foo13 10 + %foo2u 11 +%div.classes + %p.foo.bar#baz#boom + .fooBar a + .foo-bar b + .foo_bar c + .FOOBAR d + .foo16 e + .123 f + .foo2u g diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/very_basic.haml b/vendor/gems/haml-2.2.16/test/haml/templates/very_basic.haml new file mode 100644 index 0000000..93396b9 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/very_basic.haml @@ -0,0 +1,4 @@ +!!! +%html + %head + %body diff --git a/vendor/gems/haml-2.2.16/test/haml/templates/whitespace_handling.haml b/vendor/gems/haml-2.2.16/test/haml/templates/whitespace_handling.haml new file mode 100644 index 0000000..f459e75 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/templates/whitespace_handling.haml @@ -0,0 +1,87 @@ +#whitespace_test + = test_partial "text_area", :value => "Oneline" + = test_partial "text_area", :value => "Two\nlines" + ~ test_partial "text_area", :value => "Oneline" + ~ test_partial "text_area", :value => "Two\nlines" + #flattened~ test_partial "text_area", :value => "Two\nlines" +.hithere + ~ "Foo bar" + ~ "
        foo bar
        " + ~ "
        foo\nbar
        " + %p~ "
        foo\nbar
        " + %p~ "foo\nbar" +.foo + ~ 13 + ~ "".each_line do |l| + - haml_concat l.strip +#whitespace_test + = test_partial "text_area", :value => "Oneline" + = test_partial "text_area", :value => "Two\nlines" + = find_and_preserve test_partial("text_area", :value => "Oneline") + = find_and_preserve test_partial("text_area", :value => "Two\nlines") + #flattened= find_and_preserve test_partial("text_area", :value => "Two\nlines") +.hithere + = find_and_preserve("Foo bar") + = find_and_preserve("
        foo bar
        ") + = find_and_preserve("
        foo\nbar
        ") + %p= find_and_preserve("
        foo\nbar
        ") + %p= find_and_preserve("foo\nbar") + %pre + :preserve + ___ + ,o88888 + ,o8888888' + ,:o:o:oooo. ,8O88Pd8888" + ,.::.::o:ooooOoOoO. ,oO8O8Pd888'" + ,.:.::o:ooOoOoOO8O8OOo.8OOPd8O8O" + , ..:.::o:ooOoOOOO8OOOOo.FdO8O8" + , ..:.::o:ooOoOO8O888O8O,COCOO" + , . ..:.::o:ooOoOOOO8OOOOCOCO" + . ..:.::o:ooOoOoOO8O8OCCCC"o + . ..:.::o:ooooOoCoCCC"o:o + . ..:.::o:o:,cooooCo"oo:o: + ` . . ..:.:cocoooo"'o:o:::' + .` . ..::ccccoc"'o:o:o:::' + :.:. ,c:cccc"':.:.:.:.:.' + ..:.:"'`::::c:"'..:.:.:.:.:.' http://www.chris.com/ASCII/ + ...:.'.:.::::"' . . . . .' + .. . ....:."' ` . . . '' + . . . ...."' + .. . ."' -hrr- + . + + + It's a planet! + %strong This shouldn't be bold! + %strong This should! + %textarea + :preserve + ___ ___ ___ ___ + /\__\ /\ \ /\__\ /\__\ + /:/ / /::\ \ /::| | /:/ / + /:/__/ /:/\:\ \ /:|:| | /:/ / + /::\ \ ___ /::\~\:\ \ /:/|:|__|__ /:/ / + /:/\:\ /\__\ /:/\:\ \:\__\ /:/ |::::\__\ /:/__/ + \/__\:\/:/ / \/__\:\/:/ / \/__/~~/:/ / \:\ \ + \::/ / \::/ / /:/ / \:\ \ + /:/ / /:/ / /:/ / \:\ \ + /:/ / /:/ / /:/ / \:\__\ + \/__/ \/__/ \/__/ \/__/ + + Many + thanks + to + http://www.network-science.de/ascii/ + %strong indeed! +.foo + = find_and_preserve(13) +%pre + :preserve + __ ______ __ ______ + .----.| |--.|__ |.----.| |--..--------.| __ | + | __|| ||__ || __|| < | || __ | + |____||__|__||______||____||__|__||__|__|__||______| +%pre + :preserve + foo + bar diff --git a/vendor/gems/haml-2.2.16/test/haml/util_test.rb b/vendor/gems/haml-2.2.16/test/haml/util_test.rb new file mode 100644 index 0000000..560c234 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/haml/util_test.rb @@ -0,0 +1,107 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../test_helper' +require 'pathname' + +class UtilTest < Test::Unit::TestCase + include Haml::Util + + def test_scope + assert(File.exist?(scope("Rakefile"))) + end + + def test_to_hash + assert_equal({ + :foo => 1, + :bar => 2, + :baz => 3 + }, to_hash([[:foo, 1], [:bar, 2], [:baz, 3]])) + end + + def test_map_keys + assert_equal({ + "foo" => 1, + "bar" => 2, + "baz" => 3 + }, map_keys({:foo => 1, :bar => 2, :baz => 3}) {|k| k.to_s}) + end + + def test_map_vals + assert_equal({ + :foo => "1", + :bar => "2", + :baz => "3" + }, map_vals({:foo => 1, :bar => 2, :baz => 3}) {|k| k.to_s}) + end + + def test_map_hash + assert_equal({ + "foo" => "1", + "bar" => "2", + "baz" => "3" + }, map_hash({:foo => 1, :bar => 2, :baz => 3}) {|k, v| [k.to_s, v.to_s]}) + end + + def test_powerset + return unless Set[Set[]] == Set[Set[]] # There's a bug in Ruby 1.8.6 that breaks nested set equality + assert_equal([[].to_set].to_set, + powerset([])) + assert_equal([[].to_set, [1].to_set].to_set, + powerset([1])) + assert_equal([[].to_set, [1].to_set, [2].to_set, [1, 2].to_set].to_set, + powerset([1, 2])) + assert_equal([[].to_set, [1].to_set, [2].to_set, [3].to_set, + [1, 2].to_set, [2, 3].to_set, [1, 3].to_set, [1, 2, 3].to_set].to_set, + powerset([1, 2, 3])) + end + + def test_merge_adjacent_strings + assert_equal(["foo bar baz", :bang, "biz bop", 12], + merge_adjacent_strings(["foo ", "bar ", "baz", :bang, "biz", " bop", 12])) + end + + def test_silence_warnings + old_stderr, $stderr = $stderr, StringIO.new + warn "Out" + assert_equal("Out\n", $stderr.string) + silence_warnings {warn "In"} + assert_equal("Out\n", $stderr.string) + ensure + $stderr = old_stderr + end + + def test_has + assert(has?(:instance_method, String, :chomp!)) + assert(has?(:private_instance_method, Haml::Engine, :set_locals)) + end + + def test_enum_with_index + assert_equal(%w[foo0 bar1 baz2], + enum_with_index(%w[foo bar baz]).map {|s, i| "#{s}#{i}"}) + end + + def test_def_static_method + klass = Class.new + def_static_method(klass, :static_method, [:arg1, :arg2], + :sarg1, :sarg2, <and<% else %>but never<% end %> " << arg2 + + <% if sarg2 %> + s << "." + <% end %> +RUBY + c = klass.new + assert_equal("Always brush your teeth and comb your hair.", + c.send(static_method_name(:static_method, true, true), + "brush your teeth", "comb your hair")) + assert_equal("Always brush your teeth and comb your hair", + c.send(static_method_name(:static_method, true, false), + "brush your teeth", "comb your hair")) + assert_equal("Always brush your teeth but never play with fire.", + c.send(static_method_name(:static_method, false, true), + "brush your teeth", "play with fire")) + assert_equal("Always brush your teeth but never play with fire", + c.send(static_method_name(:static_method, false, false), + "brush your teeth", "play with fire")) + end +end diff --git a/vendor/gems/haml-2.2.16/test/linked_rails.rb b/vendor/gems/haml-2.2.16/test/linked_rails.rb new file mode 100644 index 0000000..b9386c0 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/linked_rails.rb @@ -0,0 +1,21 @@ +# allows testing with edge Rails by creating a test/rails symlink +linked_rails = File.dirname(__FILE__) + '/rails' + +if File.exists?(linked_rails) && !$:.include?(linked_rails + '/activesupport/lib') + puts "[ using linked Rails ]" + $:.unshift linked_rails + '/activesupport/lib' + $:.unshift linked_rails + '/actionpack/lib' +end +require 'rubygems' +require 'action_controller' +require 'action_view' + +ActionController::Base.logger = Logger.new(nil) + +# Load plugins from test/plugins. +# This will only work with very basic plugins, +# since we don't want to load the entirety of Rails. +Dir[File.dirname(__FILE__) + '/plugins/*'].each do |plugin| + $: << plugin + '/lib' + Object.new.instance_eval(File.read(plugin + '/init.rb')) +end diff --git a/vendor/gems/haml-2.2.16/test/sass/css2sass_test.rb b/vendor/gems/haml-2.2.16/test/sass/css2sass_test.rb new file mode 100644 index 0000000..4b46bcf --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/css2sass_test.rb @@ -0,0 +1,251 @@ +require 'test/unit' +require File.dirname(__FILE__) + '/../test_helper' +require 'sass/css' + +class CSS2SassTest < Test::Unit::TestCase + def test_basic + css = < true)) +h1 + :color red +SASS + end + + def test_nesting + assert_equal(< 'Expected expression, was end of text.', + "!a = 1 + 2 +" => 'Expected expression, was end of text.', + "!a = 1 + 2 + %" => 'Expected expression, was mod token.', + "!a = foo(\"bar\"" => 'Expected rparen token, was end of text.', + "!a = 1 }" => 'Unexpected end_interpolation token.', + "!a = 1 }foo\"" => 'Unexpected end_interpolation token.', + ":" => 'Invalid property: ":".', + ": a" => 'Invalid property: ": a".', + ":= a" => 'Invalid property: ":= a".', + "a\n :b" => < 'Invalid property: "b:" (no value).', + "a\n :b: c" => 'Invalid property: ":b: c".', + "a\n :b:c d" => 'Invalid property: ":b:c d".', + "a\n :b=c d" => 'Invalid property: ":b=c d".', + "a\n :b c;" => 'Invalid property: ":b c;" (no ";" required at end-of-line).', + "a\n b: c;" => 'Invalid property: "b: c;" (no ";" required at end-of-line).', + "a\n b : c" => 'Invalid property: "b : c".', + "a\n b=c: d" => 'Invalid property: "b=c: d".', + ":a b" => 'Properties aren\'t allowed at the root of a document.', + "a:" => 'Properties aren\'t allowed at the root of a document.', + ":a" => < 'Invalid variable: "!".', + "!a" => 'Invalid variable: "!a".', + "! a" => 'Invalid variable: "! a".', + "!a b" => 'Invalid variable: "!a b".', + "!a = 1b + 2c" => "Incompatible units: 'c' and 'b'.", + "!a = 1b < 2c" => "Incompatible units: 'c' and 'b'.", + "!a = 1b > 2c" => "Incompatible units: 'c' and 'b'.", + "!a = 1b <= 2c" => "Incompatible units: 'c' and 'b'.", + "!a = 1b >= 2c" => "Incompatible units: 'c' and 'b'.", + "a\n :b= 1b * 2c" => "2b*c isn't a valid CSS value.", + "a\n :b= 1b % 2c" => "Cannot modulo by a number with units: 2c.", + "!a = 2px + #ccc" => "Cannot add a number with units (2px) to a color (#cccccc).", + "!a = #ccc + 2px" => "Cannot add a number with units (2px) to a color (#cccccc).", + "& a\n :b c" => ["Base-level rules cannot contain the parent-selector-referencing character '&'.", 1], + "a\n :b\n c" => "Illegal nesting: Only properties may be nested beneath properties.", + "a,\n :b c" => ["Rules can\'t end in commas.", 1], + "a," => "Rules can\'t end in commas.", + "a,\n!b = 1" => ["Rules can\'t end in commas.", 1], + "!a = b\n :c d\n" => "Illegal nesting: Nothing may be nested beneath variable declarations.", + "@import foo.sass" => "File to import not found or unreadable: foo.sass.", + "@import templates/basic\n foo" => "Illegal nesting: Nothing may be nested beneath import directives.", + "foo\n @import templates/basic" => "Import directives may only be used at the root of a document.", + "foo\n @import #{File.dirname(__FILE__)}/templates/basic" => "Import directives may only be used at the root of a document.", + %Q{!foo = "bar" "baz" !} => %Q{Syntax error in '"bar" "baz" !' at character 20.}, + "=foo\n :color red\n.bar\n +bang" => "Undefined mixin 'bang'.", + ".bar\n =foo\n :color red\n" => ["Mixins may only be defined at the root of a document.", 2], + "=foo\n :color red\n.bar\n +foo\n :color red" => "Illegal nesting: Nothing may be nested beneath mixin directives.", + " a\n b: c" => ["Indenting at the beginning of the document is illegal.", 1], + " \n \n\t\n a\n b: c" => ["Indenting at the beginning of the document is illegal.", 4], + "a\n b: c\n b: c" => ["Inconsistent indentation: 1 space was used for indentation, but the rest of the document was indented using 2 spaces.", 3], + "a\n b: c\na\n b: c" => ["Inconsistent indentation: 1 space was used for indentation, but the rest of the document was indented using 2 spaces.", 4], + "a\n\t\tb: c\n\tb: c" => ["Inconsistent indentation: 1 tab was used for indentation, but the rest of the document was indented using 2 tabs.", 3], + "a\n b: c\n b: c" => ["Inconsistent indentation: 3 spaces were used for indentation, but the rest of the document was indented using 2 spaces.", 3], + "a\n b: c\n a\n d: e" => ["Inconsistent indentation: 3 spaces were used for indentation, but the rest of the document was indented using 2 spaces.", 4], + "a\n b: c\na\n d: e" => ["The line was indented 2 levels deeper than the previous line.", 4], + "a\n b: c\n a\n d: e" => ["The line was indented 3 levels deeper than the previous line.", 4], + "a\n \tb: c" => ["Indentation can't use both tabs and spaces.", 2], + "=a(" => 'Expected rparen token, was end of text.', + "=a(b)" => 'Expected rparen token, was ident token.', + "=a(,)" => "Expected rparen token, was comma token.", + "=a(!)" => "Syntax error in '(!)' at character 4.", + "=a(!foo bar)" => "Expected rparen token, was ident token.", + "=foo\n bar: baz\n+foo" => ["Properties aren't allowed at the root of a document.", 2], + "a-\#{!b\n c: d" => ["Expected end_interpolation token, was end of text.", 1], + "=a(!b = 1, !c)" => "Required argument !c must come before any optional arguments.", + "=a(!b = 1)\n :a= !b\ndiv\n +a(1,2)" => "Mixin a takes 1 argument but 2 were passed.", + "=a(!b)\n :a= !b\ndiv\n +a" => "Mixin a is missing parameter !b.", + "@else\n a\n b: c" => ["@else must come after @if.", 1], + "@if false\n@else foo" => "Invalid else directive '@else foo': expected 'if '.", + "@if false\n@else if " => "Invalid else directive '@else if': expected 'if '.", + "a\n !b = 12\nc\n d = !b" => 'Undefined variable: "!b".', + "=foo\n !b = 12\nc\n +foo\n d = !b" => 'Undefined variable: "!b".', + '@for !a from "foo" to 1' => '"foo" is not an integer.', + '@for !a from 1 to "2"' => '"2" is not an integer.', + '@for !a from 1 to "foo"' => '"foo" is not an integer.', + '@for !a from 1 to 1.232323' => '1.232 is not an integer.', + '@for !a from 1px to 3em' => "Incompatible units: 'em' and 'px'.", + '@if' => "Invalid if directive '@if': expected expression.", + '@while' => "Invalid while directive '@while': expected expression.", + '@debug' => "Invalid debug directive '@debug': expected expression.", + + # Regression tests + "a\n b:\n c\n d" => ["Illegal nesting: Only properties may be nested beneath properties.", 3], + "& foo\n bar: baz\n blat: bang" => ["Base-level rules cannot contain the parent-selector-referencing character '&'.", 1], + "a\n b: c\n& foo\n bar: baz\n blat: bang" => ["Base-level rules cannot contain the parent-selector-referencing character '&'.", 3], + } + + def teardown + clean_up_sassc + end + + def test_basic_render + renders_correctly "basic", { :style => :compact } + end + + def test_empty_render + assert_equal "", render("") + end + + def test_multiple_calls_to_render + sass = Sass::Engine.new("a\n b: c") + assert_equal sass.render, sass.render + end + + def test_alternate_styles + renders_correctly "expanded", { :style => :expanded } + renders_correctly "compact", { :style => :compact } + renders_correctly "nested", { :style => :nested } + renders_correctly "compressed", { :style => :compressed } + end + + def test_flexible_tabulation + assert_equal("p {\n a: b; }\n p q {\n c: d; }\n", + render("p\n a: b\n q\n c: d\n")) + assert_equal("p {\n a: b; }\n p q {\n c: d; }\n", + render("p\n\ta: b\n\tq\n\t\tc: d\n")) + end + + EXCEPTION_MAP.each do |key, value| + define_method("test_exception (#{key.inspect})") do + line = 10 + begin + silence_warnings {Sass::Engine.new(key, :filename => __FILE__, :line => line).render} + rescue Sass::SyntaxError => err + value = [value] unless value.is_a?(Array) + + assert_equal(value.first.rstrip, err.message, "Line: #{key}") + assert_equal(__FILE__, err.sass_filename) + assert_equal((value[1] || key.split("\n").length) + line - 1, err.sass_line, "Line: #{key}") + assert_match(/#{Regexp.escape(__FILE__)}:[0-9]+/, err.backtrace[0], "Line: #{key}") + else + assert(false, "Exception not raised for\n#{key}") + end + end + end + + def test_exception_line + to_render = < err + assert_equal(5, err.sass_line) + else + assert(false, "Exception not raised for '#{to_render}'!") + end + end + + def test_exception_location + to_render = < __FILE__, :line => (__LINE__-7)).render + rescue Sass::SyntaxError => err + assert_equal(__FILE__, err.sass_filename) + assert_equal((__LINE__-6), err.sass_line) + else + assert(false, "Exception not raised for '#{to_render}'!") + end + end + + def test_imported_exception + [nil, 2].each do |i| + begin + Sass::Engine.new("@import bork#{i}", :load_paths => [File.dirname(__FILE__) + '/templates/']).render + rescue Sass::SyntaxError => err + assert_equal(2, err.sass_line) + assert_match(/bork#{i}\.sass$/, err.sass_filename) + else + assert(false, "Exception not raised for imported template: bork#{i}") + end + end + end + + def test_css_import + assert_equal("@import url(./fonts.css) screen;\n", render("@import url(./fonts.css) screen")) + assert_equal("@import \"./fonts.css\" screen;\n", render("@import \"./fonts.css\" screen")) + end + + def test_sass_import + assert !File.exists?(sassc_path("importee")) + renders_correctly "import", { :style => :compact, :load_paths => [File.dirname(__FILE__) + "/templates"] } + assert File.exists?(sassc_path("importee")) + end + + def test_no_cache + assert !File.exists?(sassc_path("importee")) + renders_correctly("import", { + :style => :compact, :cache => false, + :load_paths => [File.dirname(__FILE__) + "/templates"], + }) + assert !File.exists?(sassc_path("importee")) + end + + def test_units + renders_correctly "units" + end + + def test_default_function + assert_equal("foo {\n bar: url(foo.png); }\n", render(%Q{foo\n bar = url("foo.png")\n})); + assert_equal("foo {\n bar: url(); }\n", render("foo\n bar = url()\n")); + end + + def test_string_minus + assert_equal("foo {\n bar: baz-boom-bat; }\n", render(%Q{foo\n bar = "baz"-"boom"-"bat"})) + assert_equal("foo {\n bar: -baz-boom; }\n", render(%Q{foo\n bar = -"baz"-"boom"})) + end + + def test_string_div + assert_equal("foo {\n bar: baz/boom/bat; }\n", render(%Q{foo\n bar = "baz"/"boom"/"bat"})) + assert_equal("foo {\n bar: /baz/boom; }\n", render(%Q{foo\n bar = /"baz"/"boom"})) + end + + def test_basic_multiline_selector + assert_equal("#foo #bar,\n#baz #boom {\n foo: bar; }\n", + render("#foo #bar,\n#baz #boom\n :foo bar")) + assert_equal("#foo #bar,\n#foo #baz {\n foo: bar; }\n", + render("#foo\n #bar,\n #baz\n :foo bar")) + assert_equal("#foo,\n#bar {\n foo: bar; }\n #foo #baz,\n #bar #baz {\n foo: bar; }\n", + render("#foo,\n#bar\n :foo bar\n #baz\n :foo bar")) + assert_equal("#foo #bar, #baz #boom { foo: bar; }\n", + render("#foo #bar,\n#baz #boom\n :foo bar", :style => :compact)) + + assert_equal("#foo #bar,#baz #boom{foo:bar}\n", + render("#foo #bar,\n#baz #boom\n :foo bar", :style => :compressed)) + end + + def test_complex_multiline_selector + renders_correctly "multiline" + end + + def test_colon_only + begin + render("a\n b: c", :property_syntax => :old) + rescue Sass::SyntaxError => e + assert_equal("Illegal property syntax: can't use new syntax when :property_syntax => :old is set.", + e.message) + assert_equal(2, e.sass_line) + else + assert(false, "SyntaxError not raised for :property_syntax => :old") + end + + begin + render("a\n :b c", :property_syntax => :new) + assert_equal(2, e.sass_line) + rescue Sass::SyntaxError => e + assert_equal("Illegal property syntax: can't use old syntax when :property_syntax => :new is set.", + e.message) + else + assert(false, "SyntaxError not raised for :property_syntax => :new") + end + end + + def test_pseudo_elements + assert_equal(< :compact)) + assert_equal("@a {\n b: c;\n}\n", render("@a\n :b c", :style => :expanded)) + assert_equal("@a{b:c}\n", render("@a\n :b c", :style => :compressed)) + + assert_equal("@a {\n b: c;\n d: e; }\n", + render("@a\n :b c\n :d e")) + assert_equal("@a { b: c; d: e; }\n", + render("@a\n :b c\n :d e", :style => :compact)) + assert_equal("@a {\n b: c;\n d: e;\n}\n", + render("@a\n :b c\n :d e", :style => :expanded)) + assert_equal("@a{b:c;d:e}\n", + render("@a\n :b c\n :d e", :style => :compressed)) + + assert_equal("@a {\n #b {\n c: d; } }\n", + render("@a\n #b\n :c d")) + assert_equal("@a { #b { c: d; } }\n", + render("@a\n #b\n :c d", :style => :compact)) + assert_equal("@a {\n #b {\n c: d;\n }\n}\n", + render("@a\n #b\n :c d", :style => :expanded)) + assert_equal("@a{#b{c:d}}\n", + render("@a\n #b\n :c d", :style => :compressed)) + + assert_equal("@a {\n #b {\n a: b; }\n #b #c {\n d: e; } }\n", + render("@a\n #b\n :a b\n #c\n :d e")) + assert_equal("@a { #b { a: b; }\n #b #c { d: e; } }\n", + render("@a\n #b\n :a b\n #c\n :d e", :style => :compact)) + assert_equal("@a {\n #b {\n a: b;\n }\n #b #c {\n d: e;\n }\n}\n", + render("@a\n #b\n :a b\n #c\n :d e", :style => :expanded)) + assert_equal("@a{#b{a:b}#b #c{d:e}}\n", + render("@a\n #b\n :a b\n #c\n :d e", :style => :compressed)) + + assert_equal("@a {\n #foo,\n #bar {\n b: c; } }\n", + render("@a\n #foo, \n #bar\n :b c")) + assert_equal("@a { #foo, #bar { b: c; } }\n", + render("@a\n #foo, \n #bar\n :b c", :style => :compact)) + assert_equal("@a {\n #foo,\n #bar {\n b: c;\n }\n}\n", + render("@a\n #foo, \n #bar\n :b c", :style => :expanded)) + assert_equal("@a{#foo,#bar{b:c}}\n", + render("@a\n #foo, \n #bar\n :b c", :style => :compressed)) + + to_render = < :compact)) + + assert_equal("@a{b:c;#d{e:f}g:h}\n", render(to_render, :style => :compressed)) + end + + def test_line_annotations + assert_equal(< true, :style => :compact)) +/* line 2, test_line_annotations_inline.sass */ +foo bar { foo: bar; } +/* line 5, test_line_annotations_inline.sass */ +foo baz { blip: blop; } + +/* line 9, test_line_annotations_inline.sass */ +floodle { flop: blop; } + +/* line 18, test_line_annotations_inline.sass */ +bup { mix: on; } +/* line 15, test_line_annotations_inline.sass */ +bup mixin { moop: mup; } + +/* line 22, test_line_annotations_inline.sass */ +bip hop, skip hop { a: b; } +CSS +foo + bar + foo: bar + + baz + blip: blop + + +floodle + + flop: blop + +=mxn + mix: on + mixin + moop: mup + +bup + +mxn + +bip, skip + hop + a: b +SASS + end + + def test_line_annotations_with_filename + renders_correctly "line_numbers", :line_comments => true, :load_paths => [File.dirname(__FILE__) + "/templates"] + end + + def test_empty_first_line + assert_equal("#a {\n b: c; }\n", render("#a\n\n b: c")) + end + + def test_escaped_rule + assert_equal(":focus {\n a: b; }\n", render("\\:focus\n a: b")) + assert_equal("a {\n b: c; }\n a :focus {\n d: e; }\n", render("\\a\n b: c\n \\:focus\n d: e")) + end + + def test_cr_newline + assert_equal("foo {\n a: b;\n c: d;\n e: f; }\n", render("foo\r a: b\r\n c: d\n\r e: f")) + end + + def test_or_eq + assert_equal("foo {\n a: b; }\n", render(%Q{!foo = "b"\n!foo ||= "c"\nfoo\n a = !foo})) + assert_equal("foo {\n a: b; }\n", render(%Q{!foo ||= "b"\nfoo\n a = !foo})) + end + + def test_mixins + renders_correctly "mixins", { :style => :expanded } + end + + def test_mixins_dont_interfere_with_sibling_combinator + assert_equal("foo + bar {\n a: b; }\nfoo + baz {\n c: d; }\n", + render("foo\n +\n bar\n a: b\n baz\n c: d")) + end + + def test_mixin_args + assert_equal("blat {\n baz: hi; }\n", render(< :new)) +:focus { + outline: 0; } +CSS +:focus + outline: 0 +SASS + end + + def test_pseudo_class_with_new_properties + assert_equal(< :new)) +p :focus { + outline: 0; } +CSS +p + :focus + outline: 0 +SASS + end + + # Regression tests + + def test_parens_in_mixins + assert_equal(< :compressed)) +.box{border-style:solid} +RESULT +.box + :border + /*:color black + :style solid +SOURCE + end + + def test_compressed_comment_beneath_directive + assert_equal(< :compressed)) +@foo{a:b} +RESULT +@foo + a: b + /*b: c +SOURCE + end + + def test_comment_with_crazy_indentation + assert_equal(< e + assert_equal(message, e.message) + end + +end diff --git a/vendor/gems/haml-2.2.16/test/sass/more_results/more1.css b/vendor/gems/haml-2.2.16/test/sass/more_results/more1.css new file mode 100644 index 0000000..b0d1182 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/more_results/more1.css @@ -0,0 +1,9 @@ +body { font: Arial; background: blue; } + +#page { width: 700px; height: 100; } +#page #header { height: 300px; } +#page #header h1 { font-size: 50px; color: blue; } + +#content.user.show #container.top #column.left { width: 100px; } +#content.user.show #container.top #column.right { width: 600px; } +#content.user.show #container.bottom { background: brown; } diff --git a/vendor/gems/haml-2.2.16/test/sass/more_results/more1_with_line_comments.css b/vendor/gems/haml-2.2.16/test/sass/more_results/more1_with_line_comments.css new file mode 100644 index 0000000..f31dbca --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/more_results/more1_with_line_comments.css @@ -0,0 +1,26 @@ +/* line 3, ../more_templates/more1.sass */ +body { + font: Arial; + background: blue; } + +/* line 7, ../more_templates/more1.sass */ +#page { + width: 700px; + height: 100; } + /* line 10, ../more_templates/more1.sass */ + #page #header { + height: 300px; } + /* line 12, ../more_templates/more1.sass */ + #page #header h1 { + font-size: 50px; + color: blue; } + +/* line 18, ../more_templates/more1.sass */ +#content.user.show #container.top #column.left { + width: 100px; } +/* line 20, ../more_templates/more1.sass */ +#content.user.show #container.top #column.right { + width: 600px; } +/* line 22, ../more_templates/more1.sass */ +#content.user.show #container.bottom { + background: brown; } diff --git a/vendor/gems/haml-2.2.16/test/sass/more_results/more_import.css b/vendor/gems/haml-2.2.16/test/sass/more_results/more_import.css new file mode 100644 index 0000000..97c4797 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/more_results/more_import.css @@ -0,0 +1,29 @@ +imported { otherconst: hello; myconst: goodbye; pre-mixin: here; } + +body { font: Arial; background: blue; } + +#page { width: 700px; height: 100; } +#page #header { height: 300px; } +#page #header h1 { font-size: 50px; color: blue; } + +#content.user.show #container.top #column.left { width: 100px; } +#content.user.show #container.top #column.right { width: 600px; } +#content.user.show #container.bottom { background: brown; } + +midrule { inthe: middle; } + +body { font: Arial; background: blue; } + +#page { width: 700px; height: 100; } +#page #header { height: 300px; } +#page #header h1 { font-size: 50px; color: blue; } + +#content.user.show #container.top #column.left { width: 100px; } +#content.user.show #container.top #column.right { width: 600px; } +#content.user.show #container.bottom { background: brown; } + +@import url(basic.css); +@import url(../results/complex.css); +#foo { background-color: #baf; } + +nonimported { myconst: hello; otherconst: goodbye; post-mixin: here; } diff --git a/vendor/gems/haml-2.2.16/test/sass/more_templates/_more_partial.sass b/vendor/gems/haml-2.2.16/test/sass/more_templates/_more_partial.sass new file mode 100644 index 0000000..bef627d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/more_templates/_more_partial.sass @@ -0,0 +1,2 @@ +#foo + :background-color #baf diff --git a/vendor/gems/haml-2.2.16/test/sass/more_templates/more1.sass b/vendor/gems/haml-2.2.16/test/sass/more_templates/more1.sass new file mode 100644 index 0000000..71117bf --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/more_templates/more1.sass @@ -0,0 +1,23 @@ + + +body + :font Arial + :background blue + +#page + :width 700px + :height 100 + #header + :height 300px + h1 + :font-size 50px + :color blue + +#content.user.show + #container.top + #column.left + :width 100px + #column.right + :width 600px + #container.bottom + :background brown \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/sass/more_templates/more_import.sass b/vendor/gems/haml-2.2.16/test/sass/more_templates/more_import.sass new file mode 100644 index 0000000..95c2823 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/more_templates/more_import.sass @@ -0,0 +1,11 @@ +!preconst = "hello" + +=premixin + pre-mixin: here + +@import importee, basic, basic.css, ../results/complex.css, more_partial + +nonimported + :myconst = !preconst + :otherconst = !postconst + +postmixin diff --git a/vendor/gems/haml-2.2.16/test/sass/plugin_test.rb b/vendor/gems/haml-2.2.16/test/sass/plugin_test.rb new file mode 100644 index 0000000..4b2aa2d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/plugin_test.rb @@ -0,0 +1,222 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../test_helper' +require 'sass/plugin' +require 'fileutils' + +class SassPluginTest < Test::Unit::TestCase + @@templates = %w{ + complex script parent_ref import alt + subdir/subdir subdir/nested_subdir/nested_subdir + } + + def setup + FileUtils.mkdir tempfile_loc + FileUtils.mkdir tempfile_loc(nil,"more_") + set_plugin_opts + Sass::Plugin.update_stylesheets + end + + def teardown + clean_up_sassc + FileUtils.rm_r tempfile_loc + FileUtils.rm_r tempfile_loc(nil,"more_") + end + + @@templates.each do |name| + define_method("test_template_renders_correctly (#{name})") do + assert_renders_correctly(name) + end + end + + def test_no_update + File.delete(tempfile_loc('basic')) + assert Sass::Plugin.stylesheet_needs_update?('basic', template_loc, tempfile_loc) + Sass::Plugin.update_stylesheets + assert !Sass::Plugin.stylesheet_needs_update?('basic', template_loc, tempfile_loc) + end + + def test_update_needed_when_modified + sleep 1 + FileUtils.touch(template_loc('basic')) + assert Sass::Plugin.stylesheet_needs_update?('basic', template_loc, tempfile_loc) + Sass::Plugin.update_stylesheets + assert !Sass::Plugin.stylesheet_needs_update?('basic', template_loc, tempfile_loc) + end + + def test_update_needed_when_dependency_modified + sleep 1 + FileUtils.touch(template_loc('basic')) + assert Sass::Plugin.stylesheet_needs_update?('import', template_loc, tempfile_loc) + Sass::Plugin.update_stylesheets + assert !Sass::Plugin.stylesheet_needs_update?('import', template_loc, tempfile_loc) + end + + def test_full_exception_handling + File.delete(tempfile_loc('bork')) + Sass::Plugin.update_stylesheets + File.open(tempfile_loc('bork')) do |file| + assert_equal("/*\nSass::SyntaxError: Undefined variable: \"!bork\".\non line 2 of #{template_loc('bork')}\n\n1: bork\n2: :bork= !bork", file.read.split("\n")[0...6].join("\n")) + end + File.delete(tempfile_loc('bork')) + end + + def test_nonfull_exception_handling + Sass::Plugin.options[:full_exception] = false + + File.delete(tempfile_loc('bork')) + Sass::Plugin.update_stylesheets + assert_equal("/* Internal stylesheet error */", File.read(tempfile_loc('bork'))) + File.delete(tempfile_loc('bork')) + + Sass::Plugin.options[:full_exception] = true + end + + def test_two_template_directories + set_plugin_opts :template_location => { + template_loc => tempfile_loc, + template_loc(nil,'more_') => tempfile_loc(nil,'more_') + } + Sass::Plugin.update_stylesheets + ['more1', 'more_import'].each { |name| assert_renders_correctly(name, :prefix => 'more_') } + end + + def test_two_template_directories_with_line_annotations + set_plugin_opts :line_comments => true, + :style => :nested, + :template_location => { + template_loc => tempfile_loc, + template_loc(nil,'more_') => tempfile_loc(nil,'more_') + } + Sass::Plugin.update_stylesheets + assert_renders_correctly('more1_with_line_comments', 'more1', :prefix => 'more_') + end + + def test_merb_update + begin + require 'merb' + rescue LoadError + puts "\nmerb couldn't be loaded, skipping a test" + return + end + + require 'sass/plugin/merb' + if defined?(MerbHandler) + MerbHandler.send(:define_method, :process_without_sass) { |*args| } + else + Merb::Rack::Application.send(:define_method, :call_without_sass) { |*args| } + end + + set_plugin_opts + + File.delete(tempfile_loc('basic')) + assert Sass::Plugin.stylesheet_needs_update?('basic', template_loc, tempfile_loc) + + if defined?(MerbHandler) + MerbHandler.new('.').process nil, nil + else + Merb::Rack::Application.new.call(::Rack::MockRequest.env_for('/')) + end + + assert !Sass::Plugin.stylesheet_needs_update?('basic', template_loc, tempfile_loc) + end + + def test_doesnt_render_partials + assert !File.exists?(tempfile_loc('_partial')) + end + + ## Regression + + def test_cached_dependencies_update + FileUtils.mv(template_loc("basic"), template_loc("basic", "more_")) + set_plugin_opts :load_paths => [result_loc, template_loc(nil, "more_")] + + sleep 1 + FileUtils.touch(template_loc("basic", "more_")) + assert Sass::Plugin.stylesheet_needs_update?("import", template_loc, tempfile_loc) + Sass::Plugin.update_stylesheets + assert_renders_correctly("import") + ensure + FileUtils.mv(template_loc("basic", "more_"), template_loc("basic")) + end + + private + + def assert_renders_correctly(*arguments) + options = arguments.last.is_a?(Hash) ? arguments.pop : {} + prefix = options[:prefix] + result_name = arguments.shift + tempfile_name = arguments.shift || result_name + expected_lines = File.read(result_loc(result_name, prefix)).split("\n") + actual_lines = File.read(tempfile_loc(tempfile_name, prefix)).split("\n") + + if actual_lines.first == "/*" && expected_lines.first != "/*" + assert(false, actual_lines[0..actual_lines.enum_with_index.find {|l, i| l == "*/"}.last].join("\n")) + end + + expected_lines.zip(actual_lines).each_with_index do |pair, line| + message = "template: #{result_name}\nline: #{line + 1}" + assert_equal(pair.first, pair.last, message) + end + if expected_lines.size < actual_lines.size + assert(false, "#{actual_lines.size - expected_lines.size} Trailing lines found in #{tempfile_name}.css: #{actual_lines[expected_lines.size..-1].join('\n')}") + end + end + + def template_loc(name = nil, prefix = nil) + if name + absolutize "#{prefix}templates/#{name}.sass" + else + absolutize "#{prefix}templates" + end + end + + def tempfile_loc(name = nil, prefix = nil) + if name + absolutize "#{prefix}tmp/#{name}.css" + else + absolutize "#{prefix}tmp" + end + end + + def result_loc(name = nil, prefix = nil) + if name + absolutize "#{prefix}results/#{name}.css" + else + absolutize "#{prefix}results" + end + end + + def absolutize(file) + "#{File.dirname(__FILE__)}/#{file}" + end + + def set_plugin_opts(overrides = {}) + Sass::Plugin.options = { + :template_location => template_loc, + :css_location => tempfile_loc, + :style => :compact, + :load_paths => [result_loc], + :always_update => true, + }.merge(overrides) + end + + def wait_a_tick + time = Time.now + loop {break if Time.now.sec != time.sec} + end +end + +module Sass::Plugin + class << self + public :stylesheet_needs_update? + end +end + +class Sass::Engine + alias_method :old_render, :render + + def render + raise "bork bork bork!" if @template[0] == "{bork now!}" + old_render + end +end diff --git a/vendor/gems/haml-2.2.16/test/sass/results/alt.css b/vendor/gems/haml-2.2.16/test/sass/results/alt.css new file mode 100644 index 0000000..8484343 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/alt.css @@ -0,0 +1,4 @@ +h1 { float: left; width: 274px; height: 75px; margin: 0; background-repeat: no-repeat; background-image: none; } +h1 a:hover, h1 a:visited { color: green; } +h1 b:hover { color: red; background-color: green; } +h1 const { nosp: 3; sp: 3; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/basic.css b/vendor/gems/haml-2.2.16/test/sass/results/basic.css new file mode 100644 index 0000000..b0d1182 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/basic.css @@ -0,0 +1,9 @@ +body { font: Arial; background: blue; } + +#page { width: 700px; height: 100; } +#page #header { height: 300px; } +#page #header h1 { font-size: 50px; color: blue; } + +#content.user.show #container.top #column.left { width: 100px; } +#content.user.show #container.top #column.right { width: 600px; } +#content.user.show #container.bottom { background: brown; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/compact.css b/vendor/gems/haml-2.2.16/test/sass/results/compact.css new file mode 100644 index 0000000..6a4dcb4 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/compact.css @@ -0,0 +1,5 @@ +#main { width: 15em; color: #0000ff; } +#main p { border-style: dotted; /* Nested comment More nested stuff */ border-width: 2px; } +#main .cool { width: 100px; } + +#left { font-size: 2em; font-weight: bold; float: left; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/complex.css b/vendor/gems/haml-2.2.16/test/sass/results/complex.css new file mode 100644 index 0000000..6a0fee6 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/complex.css @@ -0,0 +1,87 @@ +body { margin: 0; font: 0.85em "Lucida Grande", "Trebuchet MS", Verdana, sans-serif; color: #fff; background: url(/images/global_bg.gif); } + +#page { width: 900px; margin: 0 auto; background: #440008; border-top-width: 5px; border-top-style: solid; border-top-color: #ff8500; } + +#header { height: 75px; padding: 0; } +#header h1 { float: left; width: 274px; height: 75px; margin: 0; background-image: url(/images/global_logo.gif); /* Crazy nested comment */ background-repeat: no-repeat; text-indent: -9999px; } +#header .status { float: right; padding-top: .5em; padding-left: .5em; padding-right: .5em; padding-bottom: 0; } +#header .status p { float: left; margin-top: 0; margin-right: 0.5em; margin-bottom: 0; margin-left: 0; } +#header .status ul { float: left; margin: 0; padding: 0; } +#header .status li { list-style-type: none; display: inline; margin: 0 5px; } +#header .status a:link, #header .status a:visited { color: #ff8500; text-decoration: none; } +#header .status a:hover { text-decoration: underline; } +#header .search { float: right; clear: right; margin: 12px 0 0 0; } +#header .search form { margin: 0; } +#header .search input { margin: 0 3px 0 0; padding: 2px; border: none; } + +#menu { clear: both; text-align: right; height: 20px; border-bottom: 5px solid #006b95; background: #00a4e4; } +#menu .contests ul { margin: 0 5px 0 0; padding: 0; } +#menu .contests ul li { list-style-type: none; margin: 0 5px; padding: 5px 5px 0 5px; display: inline; font-size: 1.1em; color: #fff; background: #00a4e4; } +#menu .contests ul li / This rule isn't a comment! { red: green; } +#menu .contests a:link, #menu .contests a:visited { color: #fff; text-decoration: none; font-weight: bold; } +#menu .contests a:hover { text-decoration: underline; } + +#content { clear: both; } +#content .container { clear: both; } +#content .container .column { float: left; } +#content .container .column .right { float: right; } +#content a:link, #content a:visited { color: #93d700; text-decoration: none; } +#content a:hover { text-decoration: underline; } + +#content p, #content div { width: 40em; } +#content p li, #content p dt, #content p dd, #content div li, #content div dt, #content div dd { color: #ddffdd; background-color: #4792bb; } +#content .container.video .column.left { width: 200px; } +#content .container.video .column.left .box { margin-top: 10px; } +#content .container.video .column.left .box p { margin: 0 1em auto 1em; } +#content .container.video .column.left .box.participants img { float: left; margin: 0 1em auto 1em; border: 1px solid #6e000d; border-style: solid; } +#content .container.video .column.left .box.participants h2 { margin: 0 0 10px 0; padding: 0.5em; /* The background image is a gif! */ background: #6e000d url(/images/hdr_participant.gif) 2px 2px no-repeat; /* Okay check this out Multiline comments Wow dude I mean seriously, WOW */ text-indent: -9999px; border-top-width: 5px; border-top-style: solid; border-top-color: #a20013; border-right-width: 1px; border-right-style: dotted; } +#content .container.video .column.middle { width: 500px; } +#content .container.video .column.right { width: 200px; } +#content .container.video .column.right .box { margin-top: 0; } +#content .container.video .column.right .box p { margin: 0 1em auto 1em; } +#content .container.video .column p { margin-top: 0; } + +#content.contests .container.information .column.right .box { margin: 1em 0; } +#content.contests .container.information .column.right .box.videos .thumbnail img { width: 200px; height: 150px; margin-bottom: 5px; } +#content.contests .container.information .column.right .box.videos a:link, #content.contests .container.information .column.right .box.videos a:visited { color: #93d700; text-decoration: none; } +#content.contests .container.information .column.right .box.videos a:hover { text-decoration: underline; } +#content.contests .container.information .column.right .box.votes a { display: block; width: 200px; height: 60px; margin: 15px 0; background: url(/images/btn_votenow.gif) no-repeat; text-indent: -9999px; outline: none; border: none; } +#content.contests .container.information .column.right .box.votes h2 { margin: 52px 0 10px 0; padding: 0.5em; background: #6e000d url(/images/hdr_videostats.gif) 2px 2px no-repeat; text-indent: -9999px; border-top: 5px solid #a20013; } + +#content.contests .container.video .box.videos h2 { margin: 0; padding: 0.5em; background: #6e000d url(/images/hdr_newestclips.gif) 2px 2px no-repeat; text-indent: -9999px; border-top: 5px solid #a20013; } +#content.contests .container.video .box.videos table { width: 100; } +#content.contests .container.video .box.videos table td { padding: 1em; width: 25; vertical-align: top; } +#content.contests .container.video .box.videos table td p { margin: 0 0 5px 0; } +#content.contests .container.video .box.videos table td a:link, #content.contests .container.video .box.videos table td a:visited { color: #93d700; text-decoration: none; } +#content.contests .container.video .box.videos table td a:hover { text-decoration: underline; } +#content.contests .container.video .box.videos .thumbnail { float: left; } +#content.contests .container.video .box.videos .thumbnail img { width: 80px; height: 60px; margin: 0 10px 0 0; border: 1px solid #6e000d; } + +#content .container.comments .column { margin-top: 15px; } +#content .container.comments .column.left { width: 600px; } +#content .container.comments .column.left .box ol { margin: 0; padding: 0; } +#content .container.comments .column.left .box li { list-style-type: none; padding: 10px; margin: 0 0 1em 0; background: #6e000d; border-top: 5px solid #a20013; } +#content .container.comments .column.left .box li div { margin-bottom: 1em; } +#content .container.comments .column.left .box li ul { text-align: right; } +#content .container.comments .column.left .box li ul li { display: inline; border: none; padding: 0; } +#content .container.comments .column.right { width: 290px; padding-left: 10px; } +#content .container.comments .column.right h2 { margin: 0; padding: 0.5em; background: #6e000d url(/images/hdr_addcomment.gif) 2px 2px no-repeat; text-indent: -9999px; border-top: 5px solid #a20013; } +#content .container.comments .column.right .box textarea { width: 290px; height: 100px; border: none; } + +#footer { margin-top: 10px; padding: 1.2em 1.5em; background: #ff8500; } +#footer ul { margin: 0; padding: 0; list-style-type: none; } +#footer ul li { display: inline; margin: 0 0.5em; color: #440008; } +#footer ul.links { float: left; } +#footer ul.links a:link, #footer ul.links a:visited { color: #440008; text-decoration: none; } +#footer ul.links a:hover { text-decoration: underline; } +#footer ul.copyright { float: right; } + +.clear { clear: both; } + +.centered { text-align: center; } + +img { border: none; } + +button.short { width: 60px; height: 22px; padding: 0 0 2px 0; color: #fff; border: none; background: url(/images/btn_short.gif) no-repeat; } + +table { border-collapse: collapse; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/compressed.css b/vendor/gems/haml-2.2.16/test/sass/results/compressed.css new file mode 100644 index 0000000..c8190b3 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/compressed.css @@ -0,0 +1 @@ +#main{width:15em;color:#0000ff}#main p{border-style:dotted;border-width:2px}#main .cool{width:100px}#left{font-size:2em;font-weight:bold;float:left} diff --git a/vendor/gems/haml-2.2.16/test/sass/results/expanded.css b/vendor/gems/haml-2.2.16/test/sass/results/expanded.css new file mode 100644 index 0000000..05f91fa --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/expanded.css @@ -0,0 +1,19 @@ +#main { + width: 15em; + color: #0000ff; +} +#main p { + border-style: dotted; + /* Nested comment + * More nested stuff */ + border-width: 2px; +} +#main .cool { + width: 100px; +} + +#left { + font-size: 2em; + font-weight: bold; + float: left; +} diff --git a/vendor/gems/haml-2.2.16/test/sass/results/import.css b/vendor/gems/haml-2.2.16/test/sass/results/import.css new file mode 100644 index 0000000..97c4797 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/import.css @@ -0,0 +1,29 @@ +imported { otherconst: hello; myconst: goodbye; pre-mixin: here; } + +body { font: Arial; background: blue; } + +#page { width: 700px; height: 100; } +#page #header { height: 300px; } +#page #header h1 { font-size: 50px; color: blue; } + +#content.user.show #container.top #column.left { width: 100px; } +#content.user.show #container.top #column.right { width: 600px; } +#content.user.show #container.bottom { background: brown; } + +midrule { inthe: middle; } + +body { font: Arial; background: blue; } + +#page { width: 700px; height: 100; } +#page #header { height: 300px; } +#page #header h1 { font-size: 50px; color: blue; } + +#content.user.show #container.top #column.left { width: 100px; } +#content.user.show #container.top #column.right { width: 600px; } +#content.user.show #container.bottom { background: brown; } + +@import url(basic.css); +@import url(../results/complex.css); +#foo { background-color: #baf; } + +nonimported { myconst: hello; otherconst: goodbye; post-mixin: here; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/line_numbers.css b/vendor/gems/haml-2.2.16/test/sass/results/line_numbers.css new file mode 100644 index 0000000..3c657f9 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/line_numbers.css @@ -0,0 +1,49 @@ +/* line 1, ../templates/line_numbers.sass */ +foo { + bar: baz; } + +/* line 6, ../templates/importee.sass */ +imported { + otherconst: 12; + myconst: goodbye; } + /* line 5, ../templates/line_numbers.sass */ + imported squggle { + blat: bang; } + +/* line 3, ../templates/basic.sass */ +body { + font: Arial; + background: blue; } + +/* line 7, ../templates/basic.sass */ +#page { + width: 700px; + height: 100; } + /* line 10, ../templates/basic.sass */ + #page #header { + height: 300px; } + /* line 12, ../templates/basic.sass */ + #page #header h1 { + font-size: 50px; + color: blue; } + +/* line 18, ../templates/basic.sass */ +#content.user.show #container.top #column.left { + width: 100px; } +/* line 20, ../templates/basic.sass */ +#content.user.show #container.top #column.right { + width: 600px; } +/* line 22, ../templates/basic.sass */ +#content.user.show #container.bottom { + background: brown; } + +/* line 13, ../templates/importee.sass */ +midrule { + inthe: middle; } + +/* line 12, ../templates/line_numbers.sass */ +umph { + foo: bar; } + /* line 18, ../templates/importee.sass */ + umph baz { + blat: bang; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/mixins.css b/vendor/gems/haml-2.2.16/test/sass/results/mixins.css new file mode 100644 index 0000000..1d6f162 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/mixins.css @@ -0,0 +1,95 @@ +#main { + width: 15em; + color: #0000ff; +} +#main p { + border-top-width: 2px; + border-top-color: #ffcc00; + border-left-width: 1px; + border-left-color: #000; + -moz-border-radius: 10px; + border-style: dotted; + border-width: 2px; +} +#main .cool { + width: 100px; +} + +#left { + border-top-width: 2px; + border-top-color: #ffcc00; + border-left-width: 1px; + border-left-color: #000; + -moz-border-radius: 10px; + font-size: 2em; + font-weight: bold; + float: left; +} + +#right { + border-top-width: 2px; + border-top-color: #ffcc00; + border-left-width: 1px; + border-left-color: #000; + -moz-border-radius: 10px; + color: #f00; + font-size: 20px; + float: right; +} + +.bordered { + border-top-width: 2px; + border-top-color: #ffcc00; + border-left-width: 1px; + border-left-color: #000; + -moz-border-radius: 10px; +} + +.complex { + color: #f00; + font-size: 20px; + text-decoration: none; +} +.complex:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} +* html .complex { + height: 1px; + color: #f00; + font-size: 20px; +} + +.more-complex { + color: #f00; + font-size: 20px; + text-decoration: none; + display: inline; + -webkit-nonsense-top-right: 1px; + -webkit-nonsense-bottom-left: 1px; +} +.more-complex:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} +* html .more-complex { + height: 1px; + color: #f00; + font-size: 20px; +} +.more-complex a:hover { + text-decoration: underline; + color: #f00; + font-size: 20px; + border-top-width: 2px; + border-top-color: #ffcc00; + border-left-width: 1px; + border-left-color: #000; + -moz-border-radius: 10px; +} diff --git a/vendor/gems/haml-2.2.16/test/sass/results/multiline.css b/vendor/gems/haml-2.2.16/test/sass/results/multiline.css new file mode 100644 index 0000000..8fa9535 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/multiline.css @@ -0,0 +1,24 @@ +#main, +#header { + height: 50px; } + #main div, + #header div { + width: 100px; } + #main div a span, + #main div em span, + #header div a span, + #header div em span { + color: pink; } + +#one div.nested, +#one span.nested, +#one p.nested, +#two div.nested, +#two span.nested, +#two p.nested, +#three div.nested, +#three span.nested, +#three p.nested { + font-weight: bold; + border-color: red; + display: block; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/nested.css b/vendor/gems/haml-2.2.16/test/sass/results/nested.css new file mode 100644 index 0000000..061e6c1 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/nested.css @@ -0,0 +1,22 @@ +#main { + width: 15em; + color: #0000ff; } + #main p { + border-style: dotted; + /* Nested comment + * More nested stuff */ + border-width: 2px; } + #main .cool { + width: 100px; } + +#left { + font-size: 2em; + font-weight: bold; + float: left; } + +#right .header { + border-style: solid; } +#right .body { + border-style: dotted; } +#right .footer { + border-style: dashed; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/parent_ref.css b/vendor/gems/haml-2.2.16/test/sass/results/parent_ref.css new file mode 100644 index 0000000..c502a23 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/parent_ref.css @@ -0,0 +1,13 @@ +a { color: #000; } +a:hover { color: #f00; } + +p, div { width: 100em; } +p foo, div foo { width: 10em; } +p:hover, p bar, div:hover, div bar { height: 20em; } + +#cool { border-style: solid; border-width: 2em; } +.ie7 #cool, .ie6 #cool { content: string(Totally not cool.); } +.firefox #cool { content: string(Quite cool.); } + +.wow, .snazzy { font-family: fantasy; } +.wow:hover, .wow:visited, .snazzy:hover, .snazzy:visited { font-weight: bold; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/script.css b/vendor/gems/haml-2.2.16/test/sass/results/script.css new file mode 100644 index 0000000..c7ff9fb --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/script.css @@ -0,0 +1,16 @@ +#main { content: Hello!; qstr: Quo"ted"!; hstr: Hyph-en!; width: 30em; background-color: #000; color: #ffffaa; short-color: #112233; named-color: olive; con: foo bar(9 hi there boom); con2: noquo quo; } +#main #sidebar { background-color: #00ff98; num-normal: 10; num-dec: 10.2; num-dec0: 99; num-neg: -10; esc: 10 +12; many: 6; order: 7; complex: #4c9db1hi16; } + +#plus { num-num: 7; num-num-un: 25em; num-num-un2: 23em; num-num-neg: 9.87; num-str: 100px; num-col: #b7b7b7; num-perc: 31%; str-str: hi there; str-str2: hi there; str-col: 14em solid #112233; str-num: times: 13; col-num: #ff7b9d; col-col: #5173ff; } + +#minus { num-num: 900; col-num: #f9f9f4; col-col: #000035; unary-num: -1; unary-const: 10; unary-paren: -11; unary-two: 12; unary-many: 12; unary-crazy: -15; } + +#times { num-num: 7; num-col: #7496b8; col-num: #092345; col-col: #243648; } + +#div { num-num: 3.333; num-num2: 3.333; col-num: #092345; col-col: #0b0d0f; comp: 1px; } + +#mod { num-num: 2; col-col: #0f0e05; col-num: #020001; } + +#const { escaped-quote: !foo; default: Hello! !important; } + +#regression { a: 4; } diff --git a/vendor/gems/haml-2.2.16/test/sass/results/subdir/nested_subdir/nested_subdir.css b/vendor/gems/haml-2.2.16/test/sass/results/subdir/nested_subdir/nested_subdir.css new file mode 100644 index 0000000..7aadcfe --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/subdir/nested_subdir/nested_subdir.css @@ -0,0 +1 @@ +#pi { width: 314px; } \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/sass/results/subdir/subdir.css b/vendor/gems/haml-2.2.16/test/sass/results/subdir/subdir.css new file mode 100644 index 0000000..e404728 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/subdir/subdir.css @@ -0,0 +1,3 @@ +#nested { relative: true; } + +#subdir { font-size: 20px; font-weight: bold; } \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/sass/results/units.css b/vendor/gems/haml-2.2.16/test/sass/results/units.css new file mode 100644 index 0000000..cb566d5 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/results/units.css @@ -0,0 +1,11 @@ +b { + foo: 5px; + bar: 24px; + baz: 66.667%; + many-units: 32em; + mm: 15mm; + pc: 2pc; + pt: -72pt; + inches: 2in; + more-inches: 3.5in; + mixed: 6px; } diff --git a/vendor/gems/haml-2.2.16/test/sass/script_test.rb b/vendor/gems/haml-2.2.16/test/sass/script_test.rb new file mode 100644 index 0000000..463a13f --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/script_test.rb @@ -0,0 +1,267 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../test_helper' +require 'sass/engine' + +class SassScriptTest < Test::Unit::TestCase + include Sass::Script + + def test_color_checks_input + assert_raise(Sass::SyntaxError, "Color values must be between 0 and 255") {Color.new([1, 2, -1])} + assert_raise(Sass::SyntaxError, "Color values must be between 0 and 255") {Color.new([256, 2, 3])} + end + + def test_string_escapes + assert_equal '"', resolve("\"\\\"\"") + assert_equal "\\", resolve("\"\\\\\"") + assert_equal "\\02fa", resolve("\"\\02fa\"") + end + + def test_color_names + assert_equal "white", resolve("white") + assert_equal "white", resolve("#ffffff") + assert_equal "#fffffe", resolve("white - #000001") + end + + def test_implicit_strings + silence_warnings do + assert_equal Sass::Script::String.new("foo"), eval("foo") + assert_equal Sass::Script::String.new("foo bar"), eval("foo bar") + assert_equal Sass::Script::String.new("foo/bar"), eval("foo/bar") + end + end + + def test_interpolation + assert_equal "foo bar, baz bang", resolve('"foo #{"bar"}, #{"baz"} bang"') + assert_equal "foo bar baz bang", resolve('"foo #{"#{"ba" + "r"} baz"} bang"') + assert_equal 'foo #{bar baz} bang', resolve('"foo \#{#{"ba" + "r"} baz} bang"') + assert_equal 'foo #{baz bang', resolve('"foo #{"\#{" + "baz"} bang"') + end + + def test_rule_interpolation + assert_equal(< 2) + end + assert_equal "public_instance_methods()", resolve("public_instance_methods()") + end + + def test_hyphen_warning + a = Sass::Script::String.new("a") + b = Sass::Script::String.new("b") + assert_warning(< a, "b" => b))} +DEPRECATION WARNING: +On line 1, character 3 of 'test_hyphen_warning_inline.sass' +- will be allowed as part of variable names in version 2.4. +Please add whitespace to separate it from the previous token. +WARN + + assert_warning(< 2") + assert_equal "false", resolve("2 > 2") + assert_equal "true", resolve("3 > 2") + assert_equal "false", resolve("1 >= 2") + assert_equal "true", resolve("2 >= 2") + assert_equal "true", resolve("3 >= 2") + assert_equal "true", resolve("1 < 2") + assert_equal "false", resolve("2 < 2") + assert_equal "false", resolve("3 < 2") + assert_equal "true", resolve("1 <= 2") + assert_equal "true", resolve("2 <= 2") + assert_equal "false", resolve("3 <= 2") + end + + def test_equals + assert_equal("true", resolve('"foo" == !foo', {}, + env("foo" => Sass::Script::String.new("foo")))) + assert_equal "true", resolve("1 == 1.0") + assert_equal "true", resolve("false != true") + assert_equal "false", resolve("1em == 1px") + assert_equal "false", resolve("12 != 12") + end + + def test_operation_precedence + assert_equal "false true", resolve("true and false false or true") + assert_equal "true", resolve("false and true or true and true") + assert_equal "true", resolve("1 == 2 or 3 == 3") + assert_equal "true", resolve("1 < 2 == 3 >= 3") + assert_equal "true", resolve("1 + 3 > 4 - 2") + assert_equal "11", resolve("1 + 2 * 3 + 4") + end + + def test_functions + assert_equal "#80ff80", resolve("hsl(120, 100%, 75%)") + assert_equal "#81ff81", resolve("hsl(120, 100%, 75%) + #010001") + end + + def test_operator_unit_conversion + assert_equal "1.1cm", resolve("1cm + 1mm") + assert_equal "true", resolve("2mm < 1cm") + assert_equal "true", resolve("10mm == 1cm") + assert_equal "true", resolve("1 == 1cm") + assert_equal "true", resolve("1.1cm == 11mm") + end + + # Regression tests + + def test_interpolation_after_hash + assert_equal "#2", resolve('"##{1 + 1}"') + end + + private + + def resolve(str, opts = {}, environment = env) + munge_filename opts + eval(str, opts, environment).to_s + end + + def eval(str, opts = {}, environment = env) + munge_filename opts + Sass::Script.parse(str, opts[:line] || 1, + opts[:offset] || 0, opts[:filename]).perform(environment) + end + + def render(sass, options = {}) + munge_filename options + Sass::Engine.new(sass, options).render + end + + def env(hash = {}) + env = Sass::Environment.new + hash.each {|k, v| env.set_var(k, v)} + env + end + + def test_number_printing + assert_equal "1", eval("1") + assert_equal "1", eval("1.0") + assert_equal "1.121", eval("1.1214") + assert_equal "1.122", eval("1.1215") + assert_equal "Infinity", eval("1.0/0.0") + assert_equal "-Infinity", eval("-1.0/0.0") + assert_equal "NaN", eval("0.0/0.0") + end +end diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/_partial.sass b/vendor/gems/haml-2.2.16/test/sass/templates/_partial.sass new file mode 100644 index 0000000..bef627d --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/_partial.sass @@ -0,0 +1,2 @@ +#foo + :background-color #baf diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/alt.sass b/vendor/gems/haml-2.2.16/test/sass/templates/alt.sass new file mode 100644 index 0000000..f805e18 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/alt.sass @@ -0,0 +1,16 @@ +h1 + :float left + :width 274px + height: 75px + margin: 0 + background: + repeat: no-repeat + :image none + a:hover, a:visited + color: green + b:hover + color: red + :background-color green + const + nosp= 1 + 2 + sp = 1 + 2 diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/basic.sass b/vendor/gems/haml-2.2.16/test/sass/templates/basic.sass new file mode 100644 index 0000000..71117bf --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/basic.sass @@ -0,0 +1,23 @@ + + +body + :font Arial + :background blue + +#page + :width 700px + :height 100 + #header + :height 300px + h1 + :font-size 50px + :color blue + +#content.user.show + #container.top + #column.left + :width 100px + #column.right + :width 600px + #container.bottom + :background brown \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/bork.sass b/vendor/gems/haml-2.2.16/test/sass/templates/bork.sass new file mode 100644 index 0000000..b0d9abe --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/bork.sass @@ -0,0 +1,2 @@ +bork + :bork= !bork diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/bork2.sass b/vendor/gems/haml-2.2.16/test/sass/templates/bork2.sass new file mode 100644 index 0000000..462afb5 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/bork2.sass @@ -0,0 +1,2 @@ +bork + :bork: bork; diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/compact.sass b/vendor/gems/haml-2.2.16/test/sass/templates/compact.sass new file mode 100644 index 0000000..e37f86e --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/compact.sass @@ -0,0 +1,17 @@ +#main + :width 15em + :color #0000ff + p + :border + :style dotted + /* Nested comment + More nested stuff + :width 2px + .cool + :width 100px + +#left + :font + :size 2em + :weight bold + :float left diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/complex.sass b/vendor/gems/haml-2.2.16/test/sass/templates/complex.sass new file mode 100644 index 0000000..cf9d28b --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/complex.sass @@ -0,0 +1,307 @@ +body + :margin 0 + :font 0.85em "Lucida Grande", "Trebuchet MS", Verdana, sans-serif + :color #fff + :background url(/images/global_bg.gif) + +#page + :width 900px + :margin 0 auto + :background #440008 + :border-top + :width 5px + :style solid + :color #ff8500 + +#header + :height 75px + :padding 0 + h1 + :float left + :width 274px + :height 75px + :margin 0 + :background + :image url(/images/global_logo.gif) + /* Crazy nested comment + :repeat no-repeat + :text-indent -9999px + .status + :float right + :padding + :top .5em + :left .5em + :right .5em + :bottom 0 + p + :float left + :margin + :top 0 + :right 0.5em + :bottom 0 + :left 0 + ul + :float left + :margin 0 + :padding 0 + li + :list-style-type none + :display inline + :margin 0 5px + a:link, a:visited + :color #ff8500 + :text-decoration none + a:hover + :text-decoration underline + .search + :float right + :clear right + :margin 12px 0 0 0 + form + :margin 0 + input + :margin 0 3px 0 0 + :padding 2px + :border none + +#menu + :clear both + :text-align right + :height 20px + :border-bottom 5px solid #006b95 + :background #00a4e4 + .contests + ul + :margin 0 5px 0 0 + :padding 0 + li + :list-style-type none + :margin 0 5px + :padding 5px 5px 0 5px + :display inline + :font-size 1.1em + // This comment is properly indented + :color #fff + :background #00a4e4 + / This rule isn't a comment! + :red green + a:link, a:visited + :color #fff + :text-decoration none + :font-weight bold + a:hover + :text-decoration underline + +//General content information +#content + :clear both + .container + :clear both + .column + :float left + .right + :float right + a:link, a:visited + :color #93d700 + :text-decoration none + a:hover + :text-decoration underline + +// A hard tab: + + +#content + p, div + :width 40em + li, dt, dd + :color #ddffdd + :background-color #4792bb + .container.video + .column.left + :width 200px + .box + :margin-top 10px + p + :margin 0 1em auto 1em + .box.participants + img + :float left + :margin 0 1em auto 1em + :border 1px solid #6e000d + :style solid + h2 + :margin 0 0 10px 0 + :padding 0.5em + /* The background image is a gif! + :background #6e000d url(/images/hdr_participant.gif) 2px 2px no-repeat + /* Okay check this out + Multiline comments + Wow dude + I mean seriously, WOW + :text-indent -9999px + // And also... + Multiline comments that don't output! + Snazzy, no? + :border + :top + :width 5px + :style solid + :color #a20013 + :right + :width 1px + :style dotted + .column.middle + :width 500px + .column.right + :width 200px + .box + :margin-top 0 + p + :margin 0 1em auto 1em + .column + p + :margin-top 0 + +#content.contests + .container.information + .column.right + .box + :margin 1em 0 + .box.videos + .thumbnail img + :width 200px + :height 150px + :margin-bottom 5px + a:link, a:visited + :color #93d700 + :text-decoration none + a:hover + :text-decoration underline + .box.votes + a + :display block + :width 200px + :height 60px + :margin 15px 0 + :background url(/images/btn_votenow.gif) no-repeat + :text-indent -9999px + :outline none + :border none + h2 + :margin 52px 0 10px 0 + :padding 0.5em + :background #6e000d url(/images/hdr_videostats.gif) 2px 2px no-repeat + :text-indent -9999px + :border-top 5px solid #a20013 + +#content.contests + .container.video + .box.videos + h2 + :margin 0 + :padding 0.5em + :background #6e000d url(/images/hdr_newestclips.gif) 2px 2px no-repeat + :text-indent -9999px + :border-top 5px solid #a20013 + table + :width 100 + td + :padding 1em + :width 25 + :vertical-align top + p + :margin 0 0 5px 0 + a:link, a:visited + :color #93d700 + :text-decoration none + a:hover + :text-decoration underline + .thumbnail + :float left + img + :width 80px + :height 60px + :margin 0 10px 0 0 + :border 1px solid #6e000d + +#content + .container.comments + .column + :margin-top 15px + .column.left + :width 600px + .box + ol + :margin 0 + :padding 0 + li + :list-style-type none + :padding 10px + :margin 0 0 1em 0 + :background #6e000d + :border-top 5px solid #a20013 + div + :margin-bottom 1em + ul + :text-align right + li + :display inline + :border none + :padding 0 + .column.right + :width 290px + :padding-left 10px + h2 + :margin 0 + :padding 0.5em + :background #6e000d url(/images/hdr_addcomment.gif) 2px 2px no-repeat + :text-indent -9999px + :border-top 5px solid #a20013 + .box + textarea + :width 290px + :height 100px + :border none + +#footer + :margin-top 10px + :padding 1.2em 1.5em + :background #ff8500 + ul + :margin 0 + :padding 0 + :list-style-type none + li + :display inline + :margin 0 0.5em + :color #440008 + ul.links + :float left + a:link, a:visited + :color #440008 + :text-decoration none + a:hover + :text-decoration underline + ul.copyright + :float right + + +.clear + :clear both + +.centered + :text-align center + +img + :border none + +button.short + :width 60px + :height 22px + :padding 0 0 2px 0 + :color #fff + :border none + :background url(/images/btn_short.gif) no-repeat + +table + :border-collapse collapse diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/compressed.sass b/vendor/gems/haml-2.2.16/test/sass/templates/compressed.sass new file mode 100644 index 0000000..675fea4 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/compressed.sass @@ -0,0 +1,15 @@ +#main + :width 15em + :color #0000ff + p + :border + :style dotted + :width 2px + .cool + :width 100px + +#left + :font + :size 2em + :weight bold + :float left diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/expanded.sass b/vendor/gems/haml-2.2.16/test/sass/templates/expanded.sass new file mode 100644 index 0000000..e37f86e --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/expanded.sass @@ -0,0 +1,17 @@ +#main + :width 15em + :color #0000ff + p + :border + :style dotted + /* Nested comment + More nested stuff + :width 2px + .cool + :width 100px + +#left + :font + :size 2em + :weight bold + :float left diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/import.sass b/vendor/gems/haml-2.2.16/test/sass/templates/import.sass new file mode 100644 index 0000000..1c76dc6 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/import.sass @@ -0,0 +1,11 @@ +!preconst = "hello" + +=premixin + pre-mixin: here + +@import importee.sass, basic.sass, basic.css, ../results/complex.css, partial.sass + +nonimported + :myconst = !preconst + :otherconst = !postconst + +postmixin diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/importee.sass b/vendor/gems/haml-2.2.16/test/sass/templates/importee.sass new file mode 100644 index 0000000..246c22f --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/importee.sass @@ -0,0 +1,19 @@ +!postconst = "goodbye" + +=postmixin + post-mixin: here + +imported + :otherconst = !preconst + :myconst = !postconst + +premixin + +@import basic + +midrule + :inthe middle + +=crazymixin + foo: bar + baz + blat: bang diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/line_numbers.sass b/vendor/gems/haml-2.2.16/test/sass/templates/line_numbers.sass new file mode 100644 index 0000000..c554d58 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/line_numbers.sass @@ -0,0 +1,13 @@ +foo + bar: baz + +=premixin + squggle + blat: bang + +!preconst = 12 + +@import importee + +umph + +crazymixin \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/mixins.sass b/vendor/gems/haml-2.2.16/test/sass/templates/mixins.sass new file mode 100644 index 0000000..86546f0 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/mixins.sass @@ -0,0 +1,76 @@ +!yellow = #fc0 + +=bordered + :border + :top + :width 2px + :color = !yellow + :left + :width 1px + :color #000 + -moz-border-radius: 10px + +=header-font + :color #f00 + :font + :size 20px + +=compound + +header-font + +bordered + +=complex + +header-font + text: + decoration: none + &:after + content: "." + display: block + height: 0 + clear: both + visibility: hidden + * html & + height: 1px + +header-font +=deep + a:hover + :text-decoration underline + +compound + + +#main + :width 15em + :color #0000ff + p + +bordered + :border + :style dotted + :width 2px + .cool + :width 100px + +#left + +bordered + :font + :size 2em + :weight bold + :float left + +#right + +bordered + +header-font + :float right + +.bordered + +bordered + +.complex + +complex + +.more-complex + +complex + +deep + display: inline + -webkit-nonsense: + top-right: 1px + bottom-left: 1px diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/multiline.sass b/vendor/gems/haml-2.2.16/test/sass/templates/multiline.sass new file mode 100644 index 0000000..83140e9 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/multiline.sass @@ -0,0 +1,20 @@ +#main, +#header + height: 50px + div + width: 100px + a, + em + span + color: pink + +#one, +#two, +#three + div.nested, + span.nested, + p.nested + :font + :weight bold + :border-color red + :display block \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/nested.sass b/vendor/gems/haml-2.2.16/test/sass/templates/nested.sass new file mode 100644 index 0000000..a9ee4e0 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/nested.sass @@ -0,0 +1,25 @@ +#main + :width 15em + :color #0000ff + p + :border + :style dotted + /* Nested comment + More nested stuff + :width 2px + .cool + :width 100px + +#left + :font + :size 2em + :weight bold + :float left + +#right + .header + :border-style solid + .body + :border-style dotted + .footer + :border-style dashed diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/parent_ref.sass b/vendor/gems/haml-2.2.16/test/sass/templates/parent_ref.sass new file mode 100644 index 0000000..6b261d7 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/parent_ref.sass @@ -0,0 +1,25 @@ +a + :color #000 + &:hover + :color #f00 + +p, div + :width 100em + & foo + :width 10em + &:hover, bar + :height 20em + +#cool + :border + :style solid + :width 2em + .ie7 &, .ie6 & + :content string(Totally not cool.) + .firefox & + :content string(Quite cool.) + +.wow, .snazzy + :font-family fantasy + &:hover, &:visited + :font-weight bold diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/script.sass b/vendor/gems/haml-2.2.16/test/sass/templates/script.sass new file mode 100644 index 0000000..2d60e28 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/script.sass @@ -0,0 +1,101 @@ +!width = 10em + 20 +!color = #00ff98 +!main_text = #ffa +!num = 10 +!dec = 10.2 +!dec_0 = 99.0 +!neg = -10 +!esc= 10"+12" +!str= "Hello!" +!qstr= "Quo\"ted\"!" +!hstr= "Hyph-en!" +!concat = "#{5 + 4} hi there" +!percent= 11% +!complex = 1px/1em + +#main + :content = !str + :qstr = !qstr + :hstr = !hstr + :width = !width + :background-color #000 + :color= !main_text + :short-color= #123 + :named-color= olive + :con= "foo" bar (!concat "boom") + :con2= "noquo" "quo" + #sidebar + :background-color= !color + :num + :normal= !num + :dec= !dec + :dec0= !dec_0 + :neg= !neg + :esc= !esc + :many= 1 + 2 + 3 + :order= 1 + 2 * 3 + :complex= ((1 + 2) + 15)+#3a8b9f + ("hi"+(1 +1+ 2)* 4) + +#plus + :num + :num= 5+2 + :num-un= 10em + 15em + :num-un2= 10 + 13em + :num-neg= 10 + -.13 + :str= 100 * 1px + :col= 13 + #aaa + :perc = !percent + 20% + :str + :str= "hi" + "\ there" + :str2= "hi" + " there" + :col= "14em solid " + #123 + :num= "times: " + 13 + :col + :num= #f02 + 123.5 + :col= #12A + #405162 + +#minus + :num + :num= 912 - 12 + :col + :num= #fffffa - 5.2 + :col= #abcdef - #fedcba + :unary + :num= -1 + :const= -!neg + :paren= -(5 + 6) + :two= --12 + :many= --------12 + :crazy= -----(5 + ---!neg) + +#times + :num + :num= 2 * 3.5 + :col= 2 * #3a4b5c + :col + :num= #12468a * 0.5 + :col= #121212 * #020304 + +#div + :num + :num= 10 / 3.0 + :num2= 10 / 3 + :col + :num= #12468a / 2 + :col= #abcdef / #0f0f0f + :comp = !complex * 1em + +#mod + :num + :num= 17 % 3 + :col + :col= #5f6e7d % #10200a + :num= #aaabac % 3 + +#const + :escaped + :quote = "!foo" + :default = !str !important + +#regression + :a= (3 + 2) - 1 diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/_nested_partial.sass b/vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/_nested_partial.sass new file mode 100644 index 0000000..04008f6 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/_nested_partial.sass @@ -0,0 +1,2 @@ +#nested + :relative true diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/nested_subdir.sass b/vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/nested_subdir.sass new file mode 100644 index 0000000..aae9eeb --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/subdir/nested_subdir/nested_subdir.sass @@ -0,0 +1,3 @@ +#pi + :width 314px + \ No newline at end of file diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/subdir/subdir.sass b/vendor/gems/haml-2.2.16/test/sass/templates/subdir/subdir.sass new file mode 100644 index 0000000..8fff002 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/subdir/subdir.sass @@ -0,0 +1,6 @@ +@import nested_subdir/nested_partial.sass + +#subdir + :font + :size 20px + :weight bold diff --git a/vendor/gems/haml-2.2.16/test/sass/templates/units.sass b/vendor/gems/haml-2.2.16/test/sass/templates/units.sass new file mode 100644 index 0000000..9404f95 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/sass/templates/units.sass @@ -0,0 +1,11 @@ +b + :foo= 0.5 * 10px + :bar= 10zzz * 12px / 5zzz + :baz= percentage(12.0px / 18px) + :many-units= 10.0zzz / 3yyy * 12px / 5zzz * 3yyy / 3px * 4em + :mm= 5mm + 1cm + :pc= 1pc + 12pt + :pt= 72pt - 2in + :inches= 1in + 2.54cm + :more-inches= 1in + ((72pt * 2in) + (36pt * 1in)) / 2.54cm + :mixed= (1 + (1em * 6px / 3in)) * 4in / 2em diff --git a/vendor/gems/haml-2.2.16/test/test_helper.rb b/vendor/gems/haml-2.2.16/test/test_helper.rb new file mode 100644 index 0000000..a31a675 --- /dev/null +++ b/vendor/gems/haml-2.2.16/test/test_helper.rb @@ -0,0 +1,35 @@ +lib_dir = File.dirname(__FILE__) + '/../lib' +require File.dirname(__FILE__) + '/linked_rails' + +require 'test/unit' +require 'fileutils' +$:.unshift lib_dir unless $:.include?(lib_dir) +require 'haml' +require 'sass' + +Sass::RAILS_LOADED = true unless defined?(Sass::RAILS_LOADED) + +class Test::Unit::TestCase + def munge_filename(opts) + return if opts[:filename] + test_name = caller[1].gsub(/^.*`(?:\w+ )*(\w+)'.*$/, '\1') + opts[:filename] = "#{test_name}_inline.sass" + end + + def clean_up_sassc + path = File.dirname(__FILE__) + "/../.sass-cache" + FileUtils.rm_r(path) if File.exist?(path) + end + + def assert_warning(message) + the_real_stderr, $stderr = $stderr, StringIO.new + yield + assert_equal message.strip, $stderr.string.strip + ensure + $stderr = the_real_stderr + end + + def silence_warnings(&block) + Haml::Util.silence_warnings(&block) + end +end diff --git a/vendor/plugins/compass/init.rb b/vendor/plugins/compass/init.rb new file mode 100644 index 0000000..9621093 --- /dev/null +++ b/vendor/plugins/compass/init.rb @@ -0,0 +1,2 @@ +# This is here to make sure that the right version of sass gets loaded (haml 2.2) by the compass requires. +require 'compass' diff --git a/vendor/plugins/haml/init.rb b/vendor/plugins/haml/init.rb new file mode 100644 index 0000000..f9fdfdc --- /dev/null +++ b/vendor/plugins/haml/init.rb @@ -0,0 +1,16 @@ +begin + require File.join(File.dirname(__FILE__), 'lib', 'haml') # From here +rescue LoadError + begin + require 'haml' # From gem + rescue LoadError => e + # gems:install may be run to install Haml with the skeleton plugin + # but not the gem itself installed. + # Don't die if this is the case. + raise e unless defined?(Rake) && Rake.application.top_level_tasks.include?('gems:install') + end +end + +# Load Haml and Sass. +# Haml may be undefined if we're running gems:install. +Haml.init_rails(binding) if defined?(Haml)